login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A222525
O.g.f.: Sum_{n>=0} (2*n+1)^(2*n) * exp(-(2*n+1)^2*x) * x^n / n!.
4
1, 8, 232, 12160, 929376, 93590784, 11709432064, 1751777730560, 305065968649728, 60623947402670080, 13538933075023376384, 3356940619048979988480, 915040828127405123420160, 271974910674004076827115520, 87543520972441760055430348800, 30337462571518006406505729884160
OFFSET
0,2
LINKS
FORMULA
a(n) = 1/n! * [x^n] Sum_{k>=0} (2*k+1)^(2*k) * x^k / (1 + (2*k+1)^2*x)^(k+1).
a(n) = 1/n! * Sum_{k=0..n} (-1)^(n-k)*binomial(n,k) * (2*k+1)^(2*n).
a(n) = Sum_{k=0..n} 2^(n+k) * binomial(2*n,n+k) * stirling2(n+k,n). - Vaclav Kotesovec, May 13 2014
a(n) ~ 2^(4*n) * n^(n-1/2) / (sqrt(Pi*r*(1-r)) * exp(n) * (r*(2-r))^n), where r = -LambertW(-2*exp(-2)) = 0.4063757399599... (see A226775 = -r). - Vaclav Kotesovec, May 13 2014
EXAMPLE
O.g.f.: A(x) = 1 + 8*x + 232*x^2 + 12160*x^3 + 929376*x^4 + 93590784*x^5 +...
where
A(x) = exp(-x) + 3^2*exp(-3^2*x)*x + 5^4*exp(-5^2*x)*x^2/2! + 7^6*exp(-7^2*x)*x^3/3! + 9^8*exp(-9^2*x)*x^4/4! + 11^10*exp(-11^2*x)*x^5/5! +...
is a power series in x with integer coefficients.
MATHEMATICA
Table[1/n!*Sum[(-1)^(n-k)*Binomial[n, k]*(2*k+1)^(2*n), {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, May 13 2014 *)
Table[Sum[2^k*Binomial[2*n, k]*StirlingS2[k, n], {k, n, 2*n}], {n, 0, 20}] (* Vaclav Kotesovec, May 13 2014 *)
PROG
(PARI) {a(n)=polcoeff(sum(k=0, n, (2*k+1)^(2*k)*exp(-(2*k+1)^2*x +x*O(x^n))*x^k/k!), n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n)=(1/n!)*polcoeff(sum(k=0, n, (2*k+1)^(2*k)*x^k/(1+(2*k+1)^2*x +x*O(x^n))^(k+1)), n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n)=1/n!*sum(k=0, n, (-1)^(n-k)*binomial(n, k)*(2*k+1)^(2*n))}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 24 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 21 04:06 EDT 2024. Contains 376079 sequences. (Running on oeis4.)