OFFSET
0,4
COMMENTS
Next term has 85 digits. - Harvey P. Dale, Jun 20 2011
LINKS
T. D. Noe, Table of n, a(n) for n = 0..17
FORMULA
a(n) ~ c^(3^(n/2)), where c = 1.14457078346212152491547554986213352458144397286642473397... if n is even and c = 1.16698926092791545640507670257893418561351605568060984739... if n is odd. - Vaclav Kotesovec, Feb 26 2016
MAPLE
a[ -2]:=0: a[ -1]:=1:a[0]:=1: a[1]:=2: for n from 2 to 10 do a[n]:=a[n-1]+a[n-2]^3 od: seq(a[n], n=-2..10); # Zerinvary Lajos, Mar 19 2009
MATHEMATICA
RecurrenceTable[{a[0]==0, a[1]==1, a[n]==a[n-1]+a[n-2]^3}, a, {n, 15}] (* Harvey P. Dale, Jun 20 2011 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Stephen J. Greenfield (greenfie(AT)math.rutgers.edu)
EXTENSIONS
Mathematica program fixed by Vaclav Kotesovec, Feb 26 2016
STATUS
approved