login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A134923
a(n) = (a(n-1)+a(n-2))^3, for n>=2; a(0)=0,a(1)=1.
1
0, 1, 1, 8, 729, 400315553, 64151935432803278387177768, 264015418305763603932856608512044494366944180663171394053409979316505418715161
OFFSET
0,4
COMMENTS
a(n) = A112961(n)^3. - Lyle Blosser, Nov 29 2024
EXAMPLE
a(4) = (a(3)+a(2))^3 = (8+1)^3 = 729.
MATHEMATICA
RecurrenceTable[{a[0]==0, a[1]==1, a[n]==(a[n-1]+a[n-2])^3}, a, {n, 10}] (* Harvey P. Dale, Aug 05 2016 *)
CROSSREFS
Cf. A112961.
Sequence in context: A023813 A068895 A115590 * A144230 A309377 A110039
KEYWORD
nonn
AUTHOR
Prashant Garg (prashant.garg1988(AT)yahoo.com), Jan 29 2008
EXTENSIONS
More terms from Harvey P. Dale, Aug 05 2016
STATUS
approved