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

A380051
E.g.f. A(x) satisfies A(x) = ( 1 + 3*x*exp(x)*A(x) )^(1/3).
5
1, 1, 2, 1, -12, -15, 526, 1617, -49608, -302111, 8126010, 85724001, -2020009628, -34232466255, 696686324166, 18267485751985, -310973114236944, -12533263924965183, 168118610439268594, 10727427541319225793, -100693940482485604260, -11178369799980253348079
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..n} 3^k * k^(n-k) * binomial(k/3+1/3,k)/( (k+1)*(n-k)! ).
PROG
(PARI) a(n) = n!*sum(k=0, n, 3^k*k^(n-k)*binomial(k/3+1/3, k)/((k+1)*(n-k)!));
CROSSREFS
Cf. A380047.
Sequence in context: A151508 A164826 A055392 * A045873 A371637 A265022
KEYWORD
sign,new
AUTHOR
Seiichi Manyama, Jan 11 2025
STATUS
approved