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!)
A227207 E.g.f.: Sum_{n>=0} n^n * x^n / (n! * Product_{k=0..n} (1 - n*k*x)). 1
1, 1, 6, 105, 3568, 204745, 18028266, 2278860535, 394667414016, 90302033890953, 26525942216131330, 9775058594870836861, 4433256936788979640848, 2434899483389881601250937, 1597444746833206096334387802, 1237091666097626095124512681755, 1119205949224015886848972396596736 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
Sum_{n>=0} a(n)*x^n / n!^2 = Sum_{n>=0} (exp(n*x) - 1)^n / n!^2.
a(n) = n! * Sum_{k=0..n} k^n * Stirling2(n,k) / k!.
EXAMPLE
E.g.f.: A(x) = 1 + x + 6*x^2/2! + 105*x^3/3! + 3568*x^4/4! + 204745*x^5/5! +...
where
A(x) = 1 + x/(1-x) + 2^2*x^2/(2!*(1-2*1*x)*(1-2*2*x)) + 3^3*x^3/(3!*(1-3*1*x)*(1-3*2*x)*(1-3*3*x)) + 4^4*x^4/(4!*(1-4*1*x)*(1-4*2*x)*(1-4*3*x)*(1-4*4*x)) +...
MATHEMATICA
Flatten[{1, Table[n! * Sum[k^n * StirlingS2[n, k] / k!, {k, 0, n}], {n, 1, 20}]}] (* Vaclav Kotesovec, May 08 2014 *)
PROG
(PARI) {a(n)=n!*polcoeff(sum(m=0, 20, m^m*x^m/m!/prod(k=1, m, 1-m*k*x +x*O(x^n))), n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n)=n!^2*polcoeff(sum(m=0, n, (exp(m*x+x*O(x^n))-1)^m/m!^2), n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n)=n!*sum(k=0, n, k^n*stirling(n, k, 2)/k!)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A309378 A221933 A110342 * A126467 A013294 A013300
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 18 2013
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 April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)