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!)
A217913 O.g.f.: Sum_{n>=0} (n^3)^n * exp(-n^3*x) * x^n / n!. 21
1, 1, 31, 3025, 611501, 210766920, 110687251039, 82310957214948, 82318282158320505, 106563273280541795575, 173373343599189364594756, 346289681454731077633095526, 833091176987705031151553054843, 2376102520162485084539597049185710 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Stirling2(3*n, n).
a(n) = [x^(3*n)] (3*n)! * (exp(x) - 1)^n / n!.
a(n) = [x^(2*n)] 1 / Product_{k=1..n} (1-k*x).
a(n) = 1/n! * [x^n] Sum_{k>=0} (k^3)^k*x^k / (1 + k^3*x)^(k+1).
a(n) ~ 9^n*exp(n*(c+1))*n^(2*n)/((c+3)^(2*n)*sqrt(2*Pi*(c+1)*n)), where c = -0.1785606278779211... = LambertW(-3/exp(3)) = A226750. - Vaclav Kotesovec, Feb 28 2013
EXAMPLE
O.g.f.: A(x) = 1 + x + 31*x^2 + 3025*x^3 + 611501*x^4 + ... + Stirling2(3*n, n)*x^n + ...
where
A(x) = 1 + 1^3*x*exp(-1^3*x) + 2^6*exp(-2^3*x)*x^2/2! + 3^9*exp(-3^3*x)*x^3/3! + 4^12*exp(-4^3*x)*x^4/4! + 5^15*exp(-5^3*x)*x^5/5! + ...
simplifies to a power series in x with integer coefficients.
MATHEMATICA
Table[StirlingS2[3*n, n], {n, 0, 20}] (* Vaclav Kotesovec, Feb 28 2013 *)
PROG
(PARI) {a(n)=polcoeff(sum(k=0, n, (k^3)^k*exp(-k^3*x +x*O(x^n))*x^k/k!), n)}
(PARI) {a(n)=1/n!*polcoeff(sum(k=0, n, (k^3)^k*x^k/(1+k^3*x +x*O(x^n))^(k+1)), n)}
(PARI) {a(n)=polcoeff(1/prod(k=1, n, 1-k*x +x*O(x^(2*n))), 2*n)}
(PARI) {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)}
{a(n) = Stirling2(3*n, n)}
for(n=0, 20, print1(a(n), ", "))
(Maxima) makelist(stirling2(3*n, n), n, 0, 13); /* Martin Ettl, Oct 15 2012 */
CROSSREFS
Sequence in context: A218424 A354221 A259866 * A174584 A276111 A271070
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 14 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 March 28 15:38 EDT 2024. Contains 371254 sequences. (Running on oeis4.)