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”).

A370699
Expansion of e.g.f. exp(-x^3/6)/(1-x).
0
1, 1, 2, 5, 20, 100, 610, 4270, 34160, 307160, 3071600, 33787600, 405466600, 5271065800, 73794921200, 1106922416600, 17710758665600, 301082897315200, 5419492342264000, 102970354503016000, 2059407090060320000, 43247548855054544000, 951446074811199968000
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} (-1)^k/(6^k * k!).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-x^3/6)/(1-x)))
(PARI) a(n) = n!*sum(k=0, n\3, (-1)^k/(6^k*k!));
CROSSREFS
Sequence in context: A074415 A020001 A348597 * A039909 A009551 A323274
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Feb 27 2024
STATUS
approved