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

A373522
Expansion of e.g.f. exp(x * (1 + x^3)^(1/3)).
3
1, 1, 1, 1, 9, 41, 121, -279, -1679, 1009, 259281, 1173041, 669241, -267141159, -1295686391, 10821721, 650092657761, 3480768830561, 17723446561, -2911516748764191, -17068971040559639, 427036022281, 21673592659354854681, 137752098937383025481
OFFSET
0,5
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} binomial(n/3-k,k)/(n-3*k)!.
a(n) == 1 mod 8.
PROG
(PARI) a(n) = n!*sum(k=0, n\3, binomial(n/3-k, k)/(n-3*k)!);
CROSSREFS
Cf. A373517.
Sequence in context: A273359 A251422 A018836 * A245932 A373517 A362293
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jun 08 2024
STATUS
approved