A252584 a(n) = a(n-1)^3 + a(n-2)^9, a(0) = 0, a(1) = 1.
0, 1, 1, 2, 9, 1241, 2298661010, 19127219051011953293860241761, 8789440239853164630485833302292601093162389737995133605845884014903267053091248194081
Offset: 0
Keywords
Programs
-
Maple
a:=proc(n) option remember; if n=0 then 0 else if n=1 then 1 else a(n-1)^3+a(n-2)^9 fi fi end: seq(a(n), n = 0..9);
-
Mathematica
RecurrenceTable[{a[0]==0, a[1]==1, a[n] == a[n-1]^3 + a[n-2]^9}, a, {n, 0, 10}]
Formula
a(n) ~ d * c^(3^n), where c = 1.03028886637346769106..., d = 0.85117093406701547... is the root of the equation d^2 + d^8 = 1.
Comments