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.

A051399 a(n) = (n-1)!*a(n-1)+1.

Original entry on oeis.org

0, 1, 2, 5, 31, 745, 89401, 64368721, 324418353841, 13080548026869121, 4746669267990266628481, 17224713439683079541431852801, 687555441429141549439426981886956801, 329340156533265088807964627407023326809881601
Offset: 0

Views

Author

Keywords

Programs

  • Mathematica
    nxt[{n_,a_}]:={n+1,n!*a+1}; NestList[nxt,{0,0},15][[All,2]] (* Harvey P. Dale, May 29 2017 *)