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

A380134
Expansion of e.g.f. (1 + 3*x*exp(x))^(1/3).
2
1, 1, 0, 1, -4, 25, -194, 1813, -19816, 248113, -3502630, 55052701, -953576876, 18048491305, -370623627178, 8207063150245, -194950421191504, 4944881412682081, -133394451535683278, 3813510163227155245, -115170227064335439700, 3663942710200202043481
OFFSET
0,5
FORMULA
a(n) = n! * Sum_{k=0..n} 3^k * k^(n-k) * binomial(1/3,k)/(n-k)!.
PROG
(PARI) a(n) = n!*sum(k=0, n, 3^k*k^(n-k)*binomial(1/3, k)/(n-k)!);
CROSSREFS
Cf. A380017.
Sequence in context: A199494 A171791 A060908 * A322442 A036449 A051500
KEYWORD
sign,new
AUTHOR
Seiichi Manyama, Jan 12 2025
STATUS
approved