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

A375634
Expansion of e.g.f. exp(x^3) / (1 - x * exp(x^3/6)).
1
1, 1, 2, 12, 52, 280, 2160, 16870, 150080, 1557360, 17491600, 215908000, 2923905600, 42734091400, 672515043200, 11347480544400, 204142655516800, 3902009862150400, 78976503077472000, 1687212801048174400, 37941749192547200000
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} ((n-3*k+6)/6)^k/k!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x^3)/(1-x*exp(x^3/6))))
(PARI) a(n) = n!*sum(k=0, n\3, ((n-3*k+6)/6)^k/k!);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 22 2024
STATUS
approved