login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A375394
Expansion of e.g.f. 1 / (exp(-x^2/2) - x).
4
1, 1, 3, 12, 63, 420, 3345, 31080, 330225, 3946320, 52401195, 765404640, 12196214415, 210533843520, 3913845680745, 77955813936000, 1656235524168225, 37387344753158400, 893615568162592275, 22545399132243187200, 598744483093370188575, 16696076277239091532800
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} ((n-2*k+1)/2)^k/k!.
a(n) ~ sqrt(2*Pi) * n^(n + 1/2) / ((1 + LambertW(1)) * exp(n) * LambertW(1)^((n+1)/2)). - Vaclav Kotesovec, Aug 21 2024
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(exp(-x^2/2)-x)))
(PARI) a(n) = n!*sum(k=0, n\2, ((n-2*k+1)/2)^k/k!);
CROSSREFS
Sequence in context: A355164 A373770 A238887 * A351778 A135889 A369746
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 21 2024
STATUS
approved