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

A373539
Expansion of e.g.f. exp(x/(1 + x^3)^(1/3)).
1
1, 1, 1, 1, -7, -39, -119, 841, 10641, 59473, -393679, -9119439, -77841719, 453247081, 17769103353, 210702481081, -1002688100959, -65813075987679, -1022777654395679, 3554736409105633, 413233827275657241, 8091508938651283321, -16214426267734966039
OFFSET
0,5
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} (-1)^k * binomial(n/3-1,k)/(n-3*k)!.
a(n) == 1 mod 8.
PROG
(PARI) a(n) = n!*sum(k=0, n\3, (-1)^k*binomial(n/3-1, k)/(n-3*k)!);
CROSSREFS
Cf. A373517.
Sequence in context: A304012 A329528 A215441 * A027482 A352310 A196782
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jun 09 2024
STATUS
approved