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

A005604
a(n) = a(n-1)! + a(n-2)!.
2
1, 1, 2, 3, 8, 40326
OFFSET
0,3
COMMENTS
The next term has 168215 decimal digits. - Rick L. Shepherd, Nov 04 2004
MATHEMATICA
nxt[{a_, b_}]:={b, a!+b!}; NestList[nxt, {1, 1}, 5][[All, 1]] (* Harvey P. Dale, Aug 12 2020 *)
CROSSREFS
A114020 is an essentially identical sequence.
Sequence in context: A336292 A285088 A075849 * A114020 A372838 A011163
KEYWORD
nonn,easy
AUTHOR
STATUS
approved