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.

A218142 a(n) = Stirling2(n^2+n, n).

Original entry on oeis.org

1, 1, 31, 86526, 45232115901, 7713000216608565075, 666480349285726891499539272955, 41929298560838945526242744414099901692285884, 2610516895723221966171633379256064857587637240616032299710417
Offset: 0

Views

Author

Paul D. Hanna, Oct 21 2012

Keywords

Examples

			O.g.f.: A(x) = 1 + x + 31*x^2 + 86526*x^3 + 45232115901*x^4 +...
		

Crossrefs

Programs

  • Mathematica
    Table[StirlingS2[n^2+n, n],{n,0,10}] (* Vaclav Kotesovec, May 11 2014 *)
  • Maxima
    makelist(stirling2(n^2+n,n),n,0,30 ); /* Martin Ettl, Oct 21 2012 */
  • PARI
    {a(n)=polcoeff(sum(k=0,n,(k^(n+1))^k*exp(-k^(n+1)*x +x*O(x^n))*x^k/k!),n)}
    
  • PARI
    {a(n)=polcoeff(1/prod(k=1, n, 1-k*x +x*O(x^(n^2))), n^2)}
    
  • PARI
    {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)}
    {a(n) = Stirling2(n^2+n, n)}
    for(n=0, 10, print1(a(n), ", "))
    

Formula

a(n) = [x^n] Sum_{k>=0} k^((n+1)*k) * exp(-k^(n+1)*x) * x^k / k!.
a(n) = [x^(n^2)] 1 / Product_{k=1..n} (1-k*x).
a(n) ~ n^(n^2+n)/n!. - Vaclav Kotesovec, May 11 2014