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!)
A354550 Expansion of e.g.f. exp( x * exp(x^2/2) ). 6
1, 1, 1, 4, 13, 46, 241, 1156, 6889, 44668, 300241, 2328976, 18390901, 159273544, 1461200833, 13995753136, 144068872081, 1531949061136, 17259159775969, 202543867724608, 2474236899786781, 31633380519660256, 417760492214548561, 5751414293905728064 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} (n - 2*k)^k/(2^k * k! * (n - 2*k)!).
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Exp[x Exp[x^2/2]], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Mar 03 2024 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x*(exp(x^2/2)))))
(PARI) a(n) = n!*sum(k=0, n\2, (n-2*k)^k/(2^k*k!*(n-2*k)!));
CROSSREFS
Cf. A216688.
Sequence in context: A218667 A149439 A014145 * A143566 A098841 A363547
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 18 2022
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 August 14 18:55 EDT 2024. Contains 375166 sequences. (Running on oeis4.)