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!)
A222528 O.g.f.: Sum_{n>=0} (n^8)^n * exp(-n^8*x) * x^n / n!. 5
1, 1, 32767, 47063200806, 768305500780164501, 75740854251732106906082250, 31154086963475828638359480518580526, 41929298560838945526242744414099901692285884, 155440114706926165785630654089245708839702615196926765, 1396002062838446082394548660243302585983358463911636390911298400 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Stirling2(8*n, n).
a(n) = [x^(8*n)] (8*n)! * (exp(x) - 1)^n / n!.
a(n) = [x^(7*n)] 1 / Product_{k=1..n} (1-k*x).
a(n) = 1/n! * [x^n] Sum_{k>=0} (k^8)^k*x^k / (1 + k^8*x)^(k+1).
a(n) ~ n^(7*n) * 8^(8*n) / (sqrt(2*Pi*(1-c)*n) * exp(7*n) * (8-c)^(7*n) * c^n), where c = -LambertW(-8*exp(-8)). - Vaclav Kotesovec, May 11 2014
EXAMPLE
O.g.f.: A(x) = 1 + x + 32767*x^2 + 47063200806*x^3 + 768305500780164501*x^4 +...+ Stirling2(8*n, n)*x^n +...
where
A(x) = 1 + 1^8*x*exp(-1^8*x) + 2^16*exp(-2^8*x)*x^2/2! + 3^24*exp(-3^8*x)*x^3/3! + 4^32*exp(-4^8*x)*x^4/4! + 5^40*exp(-5^8*x)*x^5/5! +...
is a power series in x with integer coefficients.
MATHEMATICA
Table[StirlingS2[8*n, n], {n, 0, 20}] (* Vaclav Kotesovec, May 11 2014 *)
PROG
(PARI) {a(n)=polcoeff(sum(k=0, n, (k^8)^k*exp(-k^8*x +x*O(x^n))*x^k/k!), n)}
(PARI) {a(n)=1/n!*polcoeff(sum(k=0, n, (k^8)^k*x^k/(1+k^8*x +x*O(x^n))^(k+1)), n)}
(PARI) {a(n)=polcoeff(1/prod(k=1, n, 1-k*x +x*O(x^(7*n))), 7*n)}
(PARI) {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)}
{a(n) = Stirling2(8*n, n)}
for(n=0, 12, print1(a(n), ", "))
CROSSREFS
Sequence in context: A069390 A069416 A289478 * A232393 A217589 A069276
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 23 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 19 10:56 EDT 2024. Contains 371791 sequences. (Running on oeis4.)