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.

A154416 Maximal Stirling numbers of the first kind.

Original entry on oeis.org

1, 1, 1, 2, 11, 35, 274, 1624, 13068, 118124, 1026576, 12753576, 120543840, 1931559552, 20313753096, 392156797824, 5056995703824, 102992244837120, 1583313975727488, 34012249593822720, 610116075740491776, 13803759753640704000, 284093315901811468800
Offset: 0

Views

Author

Roger L. Bagula, Jan 09 2009

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Max[Table[StirlingS1[n, m], {m, 0, n}]], {n, 0, 30}]
  • PARI
    a(n) = vecmax(vector(n+1, m, stirling(n, m-1, 1))); \\ Michel Marcus, Sep 16 2016

Formula

a(n) = max_{m=0..n} StirlingS1(n,m).