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

A380096
E.g.f. A(x) satisfies A(x) = 1/( 1 - 3*x*A(x)^3*exp(x*A(x)^3) )^(1/3).
0
1, 1, 12, 289, 10724, 540745, 34551886, 2676439507, 243782162408, 25535467766593, 3024360522754010, 399665508962874451, 58301379215119084012, 9305724270031402836337, 1613262216112899513140630, 301870732625016111841693795, 60639884085040694650040518736
OFFSET
0,3
FORMULA
E.g.f.: ( (1/x) * Series_Reversion(x*(1 - 3*x*exp(x))) )^(1/3).
a(n) = n! * Sum_{k=0..n} 3^k * k^(n-k) * binomial(n+k+1/3,k)/( (3*n+3*k+1)*(n-k)! ).
a(n) = (n!/(3*n+1)) * Sum_{k=0..n} (-3)^k * k^(n-k) * binomial(-n-1/3,k)/(n-k)!.
PROG
(PARI) a(n) = n!*sum(k=0, n, 3^k*k^(n-k)*binomial(n+k+1/3, k)/((3*n+3*k+1)*(n-k)!));
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Seiichi Manyama, Jan 12 2025
STATUS
approved