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

A182149
a(n) = Fibonacci(n^3).
4
0, 1, 21, 196418, 10610209857723, 59425114757512643212875125, 619220451666590135228675387863297874269396512, 215414832505658809004682396169711233230800418578767753330908886771798637
OFFSET
0,3
LINKS
FORMULA
a(n) = A000045(A000578(n)).
MAPLE
a:= n-> (<<0|1>, <1|1>>^(n^3))[1, 2]:
seq(a(n), n=0..8); # Alois P. Heinz, Aug 09 2018
MATHEMATICA
Table[Fibonacci[n^3], {n, 20}]
PROG
(Magma) [Fibonacci(n^3): n in [0..10]];
CROSSREFS
Sequence in context: A068735 A172800 A013768 * A358665 A203673 A172854
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jul 07 2012
STATUS
approved