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

A250493
(n^7)-th Fibonacci number.
3
0, 1, 251728825683549488150424261
OFFSET
0,3
LINKS
FORMULA
a(n) = A000045(n^7).
MAPLE
a:= n-> (<<0|1>, <1|1>>^(n^7))[1, 2]:
seq(a(n), n=0..3);
MATHEMATICA
Table[Fibonacci[n^7], {n, 0, 5}] (* Vincenzo Librandi, Nov 24 2014 *)
PROG
(Magma) [Fibonacci(n^7): n in [0..4]]; // Vincenzo Librandi, Nov 24 2014
CROSSREFS
Column k=7 of A250486.
Cf. A000045.
Sequence in context: A338952 A375645 A323535 * A219322 A280349 A215403
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Nov 24 2014
STATUS
approved