OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
Limit_{n -> infinity} a(n)/a(n-1) = (phi-1)/C = 1.1537213755417679... where C is the positive root of x^4 -x^3+2x-1 (C = 0.5356873867918...).
MATHEMATICA
RecurrenceTable[{a[1]==1, a[2]==10, a[n]==Floor[a[n-1]/GoldenRatio]+ Floor[a[n-2]/GoldenRatio]}, a, {n, 60}] (* Harvey P. Dale, Jan 27 2012 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Aug 13 2002
STATUS
approved