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!)
A217915 O.g.f.: Sum_{n>=1} (n^5)^n * exp(-n^5*x) * x^n / n!. 12
1, 1, 511, 2375101, 45232115901, 2436684974110751, 299310102746948685757, 72786959006434393367186463, 31712979422428631132831124895809, 22982258052528294182955639980819773510, 26154716515862881292012777396577993781727011 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Stirling2(5*n, n).
a(n) = [x^(5*n)] (5*n)! * (exp(x) - 1)^n / n!.
a(n) = [x^(4*n)] 1 / Product_{k=1..n} (1-k*x).
a(n) = 1/n! * [x^n] Sum_{k>=0} (k^5)^k*x^k / (1 + k^5*x)^(k+1).
a(n) ~ n^(4*n)*5^(5*n) / (sqrt(2*Pi*n*(1-c)) * exp(4*n) * (5-c)^(4*n) * c^n), where c = -LambertW(-5/exp(5)) = 0.0348857682557... - Vaclav Kotesovec, May 23 2013
EXAMPLE
O.g.f.: A(x) = 1 + x + 511*x^2 + 2375101*x^3 + 45232115901*x^4 +...+ Stirling2(5*n, n)*x^n +...
where
A(x) = 1 + 1^5*x*exp(-1^5*x) + 2^10*exp(-2^5*x)*x^2/2! + 3^15*exp(-3^5*x)*x^3/3! + 4^20*exp(-4^5*x)*x^4/4! + 5^25*exp(-5^5*x)*x^5/5! +...
is a power series in x with integer coefficients.
MATHEMATICA
Table[StirlingS2[5*n, n], {n, 0, 20}] (* Vaclav Kotesovec, May 23 2013 *)
PROG
(PARI) {a(n)=polcoeff(sum(k=0, n, (k^5)^k*exp(-k^5*x +x*O(x^n))*x^k/k!), n)}
(PARI) {a(n)=1/n!*polcoeff(sum(k=0, n, (k^5)^k*x^k/(1+k^5*x +x*O(x^n))^(k+1)), n)}
(PARI) {a(n)=polcoeff(1/prod(k=1, n, 1-k*x +x*O(x^(4*n))), 4*n)}
(PARI) {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)}
{a(n) = Stirling2(5*n, n)}
for(n=0, 12, print1(a(n), ", "))
(Maxima) makelist(stirling2(5*n, n), n, 0, 10); /* Martin Ettl, Oct 15 2012 */
CROSSREFS
Sequence in context: A069410 A289475 A069436 * A263167 A139303 A354537
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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)