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

A365287
E.g.f. satisfies A(x) = 1 + x*A(x)*exp(x^3*A(x)^3).
6
1, 1, 2, 6, 48, 720, 11520, 183960, 3185280, 65681280, 1637193600, 46436544000, 1423113753600, 46607434473600, 1648149184281600, 63369409495392000, 2634451417524326400, 117088187211284889600, 5518546983426135859200, 275022667579200532992000
OFFSET
0,3
FORMULA
a(n) = (n!/(n+1)) * Sum_{k=0..floor(n/3)} (n-3*k)^k * binomial(n+1,n-3*k)/k!.
a(n) ~ 3^(n/3) * (1 + 4*LambertW(3^(1/4)/4))^(n + 3/2) * n^(n-1) / (sqrt(1 + LambertW(3^(1/4)/4)) * 2^(8*n/3 + 4) * exp(n) * LambertW(3^(1/4)/4)^(4*n/3 + 3/2)). - Vaclav Kotesovec, Nov 08 2023
MATHEMATICA
Join[{1}, Table[n!/(n+1) * Sum[(n-3*k)^k * Binomial[n+1, n-3*k]/k!, {k, 0, Floor[n/3]}], {n, 1, 20}]] (* Vaclav Kotesovec, Nov 08 2023 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\3, (n-3*k)^k*binomial(n+1, n-3*k)/k!)/(n+1);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 31 2023
STATUS
approved