cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A005604 a(n) = a(n-1)! + a(n-2)!.

Original entry on oeis.org

1, 1, 2, 3, 8, 40326
Offset: 0

Views

Author

Keywords

Comments

The next term has 168215 decimal digits. - Rick L. Shepherd, Nov 04 2004

Crossrefs

A114020 is an essentially identical sequence.

Programs

  • Mathematica
    nxt[{a_,b_}]:={b,a!+b!}; NestList[nxt,{1,1},5][[All,1]] (* Harvey P. Dale, Aug 12 2020 *)