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

A371044
E.g.f. satisfies A(x) = 1 + x^3*exp(x*A(x)).
4
1, 0, 0, 6, 24, 60, 120, 5250, 80976, 726264, 4839120, 86487390, 2283242280, 42585905076, 590667519624, 10115535833130, 286758920451360, 8128299117822960, 186279550983756576, 4123388294626654134, 118916807955913504440, 4102548791571529697580
OFFSET
0,4
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} k^(n-3*k) * binomial(n-3*k+1,k)/( (n-3*k+1)*(n-3*k)! ).
MATHEMATICA
nmax = 20; CoefficientList[Series[1 - LambertW[-E^x*x^4]/x, {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Mar 10 2024 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\3, k^(n-3*k)*binomial(n-3*k+1, k)/((n-3*k+1)*(n-3*k)!));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 09 2024
STATUS
approved