OFFSET
0,2
LINKS
N. J. A. Sloane, Families of Essentially Identical Sequences, Mar 24 2021 (Includes this sequence)
PROG
(Python)
import math
phi = (1 + math.sqrt(5))/2
for n in range(101):
print(int(math.floor((2*n)+ 1) * phi), end=', ')
# Alvin Hoover Belt, Mar 17 2021
(Python)
from math import isqrt
def A342279(n): return ((m:=(n<<1)+1)+isqrt(5*m**2)>>1) # Chai Wah Wu, Aug 10 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Mar 16 2021
STATUS
approved