The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A218141 a(n) = Stirling2(n^2, n). 4
1, 1, 7, 3025, 171798901, 2436684974110751, 14204422416132896951197888, 50789872166903636182659702516635946082, 155440114706926165785630654089245708839702615196926765, 541500903058656141876322139677626107784896646583041951351456223689104719 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = [x^n] Sum_{k>=0} k^(n*k) * exp(-k^n*x) * x^k / k!.
a(n) = [x^(n^2-n)] 1 / Product_{k=1..n} (1-k*x).
a(n) ~ n^(n^2)/n!. - Vaclav Kotesovec, May 11 2014
EXAMPLE
O.g.f.: A(x) = 1 + x + 7*x^2 + 3025*x^3 + 171798901*x^4 + 2436684974110751*x^5 +...
MATHEMATICA
Table[StirlingS2[n^2, n], {n, 0, 10}] (* Vaclav Kotesovec, May 11 2014 *)
PROG
(PARI) {a(n)=polcoeff(sum(k=0, n, (k^n)^k*exp(-k^n*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+1))), n^2-n)}
(PARI) {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)}
{a(n) = Stirling2(n^2, n)}
for(n=0, 10, print1(a(n), ", "))
(Maxima) makelist(stirling2(n^2, n), n, 0, 30 ); /* Martin Ettl, Oct 21 2012 */
CROSSREFS
Sequence in context: A242851 A264787 A070227 * A172956 A236368 A350018
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 21 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 5 04:27 EDT 2024. Contains 373102 sequences. (Running on oeis4.)