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.

A213169 a(n) = n! + n + 1.

Original entry on oeis.org

2, 3, 5, 10, 29, 126, 727, 5048, 40329, 362890, 3628811, 39916812, 479001613, 6227020814, 87178291215, 1307674368016, 20922789888017, 355687428096018, 6402373705728019, 121645100408832020, 2432902008176640021
Offset: 0

Views

Author

Olivier Gérard, Nov 02 2012

Keywords

Comments

Can be used to detect triangular tables whose rows sum to n! when decreased by 1.

Crossrefs

Programs

  • Mathematica
    Table[n! + n + 1, {n, 0, 20}]
  • Maxima
    A213169(n):=n!+n+1$
    makelist(A213169(n),n,0,30); /* Martin Ettl, Nov 03 2012 */