OFFSET
0,2
COMMENTS
Same recursion as A006336, but different initial condition.
LINKS
T. D. Noe, Table of n, a(n) for n = 0..1000
MATHEMATICA
a[0]=1; a[n_] := a[n] = a[n-1] + a[Floor[n/GoldenRatio]]; Table[a[n], {n, 0, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Jul 23 2007
STATUS
approved