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

A063374
a(n) = Fibonacci(n!).
5
1, 1, 1, 8, 46368, 5358359254990966640871840, 1323171012053243520828784042795469593341319770463238313551473338336502410952765153371119398122747569819754164672344667591018783803781288766524146031040
OFFSET
0,4
MAPLE
a:= n-> (<<0|1>, <1|1>>^(n!))[1, 2]:
seq(a(n), n=0..6); # Alois P. Heinz, Jun 10 2018
MATHEMATICA
Array[Fibonacci[ #! ]&, 7] (* Vladimir Joseph Stephan Orlovsky, Nov 01 2009 *)
PROG
(PARI) for(n=0, 6, print(fibonacci(n!)))
(Sage) [fibonacci(factorial(n)) for n in range(0, 9)] # Zerinvary Lajos, Nov 30 2009
CROSSREFS
Cf. A000045.
Sequence in context: A256423 A349113 A175855 * A067055 A137142 A368066
KEYWORD
nonn
AUTHOR
Jason Earls, Jul 23 2001
STATUS
approved