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!)
A222076 O.g.f.: Sum_{n>=0} n^n*(n+2)^n * exp(-n*(n+2)*x) * x^n / n!. 4
1, 3, 23, 320, 6397, 166467, 5338412, 203578776, 9001795829, 452924585465, 25555585227999, 1598279794889076, 109748572718377660, 8209004345714098500, 664396187060996529528, 57853075421585981420208, 5393119810256349152565573, 535908449308064099732283429, 56548822143306498413322880709 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 1/n! * [x^n] Sum_{k>=0} k^k*(k+2)^k * x^k / (1 + k*(k+2)*x)^(k+1).
a(n) = 1/n! * Sum_{k=0..n} (-1)^(n-k)*binomial(n,k) * k^n * (k+2)^n.
a(n) ~ n^n * 2^(2*n+1/2) / (sqrt(Pi*(1-c)*n) * exp(n) * (2-c)^n * c^(n+1)), where c = -LambertW(-2*exp(-2)) = 0.4063757399599599... . - Vaclav Kotesovec, May 22 2014
EXAMPLE
O.g.f.: A(x) = 1 + 3*x + 23*x^2 + 320*x^3 + 6397*x^4 + 166467*x^5 +...
where
A(x) = 1 + 3*x*exp(-3*x) + 8^2*exp(-8*x)*x^2/2! + 15^3*exp(-15*x)*x^3/3! + 24^4*exp(-24*x)*x^4/4! + 35^5*exp(-35*x)*x^5/5! +...
is a power series in x with integer coefficients.
MATHEMATICA
Flatten[{1, Table[Sum[Binomial[n, j] * 2^(n-j) * StirlingS2[n+j, n], {j, 0, n}], {n, 1, 20}]}] (* Vaclav Kotesovec, May 22 2014 *)
PROG
(PARI) {a(n)=polcoeff(sum(m=0, n, m^m*(m+2)^m*x^m*exp(-m*(m+2)*x+x*O(x^n))/m!), n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n)=(1/n!)*polcoeff(sum(k=0, n, k^k*(k+2)^k*x^k/(1+k*(k+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)*k^n*(k+2)^n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A088692 A188313 A227821 * A338301 A129458 A118184
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 24 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 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)