OFFSET
0,1
REFERENCES
A. Knopfmacher, "Rational numbers with predictable Engel product expansions," in G. E. Bergum et al., eds., Applications of Fibonacci Numbers. Vol. 5, pp. 421-427.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
FORMULA
a(n) ~ c^(phi^n), where phi = A001622 = (1+sqrt(5))/2 is the golden ratio and c = 1.438209999512701281674411567... . - Vaclav Kotesovec, Mar 06 2016
MATHEMATICA
nxt[{a_, b_}]:={b, a(b+1)-1}; Join[{-3, -2}, Transpose[NestList[nxt, {2, 5}, 12]][[1]]] (* Harvey P. Dale, Oct 19 2012 *)
Flatten[{-3, -2, RecurrenceTable[{a[n+1] == a[n-1]*(a[n] + 1) - 1, a[1] == 2, a[2] == 2}, a, {n, 2, 14}]}] (* Vaclav Kotesovec, Mar 06 2016 *)
CROSSREFS
KEYWORD
sign,easy,nice
AUTHOR
EXTENSIONS
More terms from Christian G. Bower, Oct 15 1999
One additional term from Harvey P. Dale, Oct 19 2012
STATUS
approved