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!)
A240989 Expansion of e.g.f. exp(x^2 * (exp(x) - 1)). 8
1, 0, 0, 6, 12, 20, 390, 2562, 11816, 105912, 1063530, 8815070, 81342492, 895185876, 9971185406, 112642410090, 1372455608400, 17750397057392, 236950003516626, 3286258330135734, 47688868443593540, 719345273005797900, 11222288509573985382, 181168865439054099266 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) ~ exp((n-r^3)/(2+r)-n) * n^(n+1/2) / (r^n * sqrt((2*r^3*(3+r) + n*(1+r)*(4+r))/(2+r))), where r is the root of the equation r^2*((2+r) * exp(r) - 2) = n.
(a(n)/n!)^(1/n) ~ exp(1/(3*LambertW(n^(1/3)/3))) / (3*LambertW(n^(1/3)/3)).
From Seiichi Manyama, Jul 09 2022: (Start)
a(n) = n! * Sum_{k=0..floor(n/3)} Stirling2(n-2*k,k)/(n-2*k)!.
a(0) = 1; a(n) = (n-1)! * Sum_{k=3..n} k/(k-2)! * a(n-k)/(n-k)!. (End)
MATHEMATICA
CoefficientList[Series[E^(x^2*(E^x-1)), {x, 0, 20}], x] * Range[0, 20]!
PROG
(PARI) x='x+O('x^30); Vec(serlaplace(exp(x^2*(exp(x) - 1)))) \\ G. C. Greubel, Nov 21 2017
(PARI) a(n) = n!*sum(k=0, n\3, stirling(n-2*k, k, 2)/(n-2*k)!); \\ Seiichi Manyama, Jul 09 2022
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!*sum(j=3, i, j/(j-2)!*v[i-j+1]/(i-j)!)); v; \\ Seiichi Manyama, Jul 09 2022
CROSSREFS
Column k=2 of A292892.
Sequence in context: A303481 A247256 A292951 * A366564 A247212 A358013
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Aug 06 2014
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 September 4 22:32 EDT 2024. Contains 375685 sequences. (Running on oeis4.)