OFFSET
1,2
COMMENTS
Golomb's sequence using squares. - Benoit Cloitre, Apr 20 2003
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..10000
FORMULA
n-th term, divided by n, tends to square root of two.
MATHEMATICA
f[s_] := Join@@Table[i^2, {i, Length[s]}, {s[[i]]}]; Nest[f, {1, 4}, 3]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved