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”).

A145233
a(n) = Fibonacci(6^n).
7
1, 8, 14930352, 619220451666590135228675387863297874269396512
OFFSET
0,2
COMMENTS
The next term, a(4), has 271 digits. - Harvey P. Dale, Jul 18 2011
LINKS
FORMULA
a(n) = (G^(6^n) - (1 - G)^(6^n))/sqrt(5) where G = (1 + sqrt(5))/2.
MAPLE
A145233 := proc(n) combinat[fibonacci](6^n) ; end proc: # R. J. Mathar, Apr 01 2011
MATHEMATICA
G = (1 + Sqrt[5])/2; Table[Expand[(G^(6^n) - (1 - G)^(6^n))/Sqrt[5]], {n, 1, 6}]
(* Second program: *)
Fibonacci[6^Range[4]] (* Harvey P. Dale, Jul 18 2011 *)
PROG
(Magma) [Fibonacci(6^n): n in [0..5]]; // Vincenzo Librandi, Apr 02 2011
CROSSREFS
Cf. A000045.
Cf. (k^n)-th Fibonacci number: A058635 (k=2), A045529 (k=3), A145231 (k=4), A145232 (k=5), this sequence (k=6), A145234 (k=7), A250487 (k=8), A250488 (k=9), A250489 (k=10).
Sequence in context: A223937 A358813 A072315 * A076916 A076917 A076923
KEYWORD
nonn
AUTHOR
Artur Jasinski, Oct 05 2008
STATUS
approved