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

A380016
Expansion of e.g.f. 1/(exp(-3*x) - 3*x)^(1/3).
0
1, 2, 13, 161, 2833, 64841, 1827685, 61192181, 2372620801, 104549934977, 5160225776101, 281994042839477, 16902276273364465, 1102519010117525105, 77749077431938305541, 5894145002422856684501, 478015727336387513545345, 41295912476641866286397825, 3786025873450493919700627525
OFFSET
0,2
FORMULA
a(n) = n! * Sum_{k=0..n} (-3)^k * (3*k+1)^(n-k) * binomial(-1/3,k)/(n-k)!.
PROG
(PARI) a(n) = n!*sum(k=0, n, (-3)^k*(3*k+1)^(n-k)*binomial(-1/3, k)/(n-k)!);
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Seiichi Manyama, Jan 09 2025
STATUS
approved