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.

A058808 Product{k=1 to n}[S(n,k)], where S(n,k) is a Stirling number of the second kind. (S(n,k) = number of ways of partitioning a set of n elements into k nonempty subsets.)

Original entry on oeis.org

1, 1, 3, 42, 3750, 2720250, 19512927000, 1631977354072800, 1833446251541145780000, 31323109023670061678062500000, 9087660958278168844264470405352500000
Offset: 1

Views

Author

Leroy Quet, Jan 02 2001

Keywords

Examples

			a(4) = S(4,1)*S(4,2)*S(4,3)*S(4,4) = 1*7*6*1 = 42.
		

Crossrefs

Programs

  • Maple
    a:=n->mul(stirling2(n, k), k=1..n): seq(a(n), n=1..12); # Zerinvary Lajos, Jun 28 2007
  • Mathematica
    Table[Product[StirlingS2[n, k], {k, 1, n}], {n, 1, 12}] (* Vaclav Kotesovec, Feb 26 2021 *)
  • PARI
    a(n) = prod(k=1, n, stirling(n, k, 2)); \\ Michel Marcus, Dec 12 2015

Formula

log(a(n)) ~ n^2 * (log(n) + gamma - 3/2) / 2, where gamma is the Euler-Mascheroni constant A001620. - Vaclav Kotesovec, Feb 27 2021