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

A379685
Expansion of e.g.f. (1/x) * Series_Reversion( x * exp(-2*x) * (1 - x*exp(x)) ).
1
1, 3, 30, 551, 15028, 547717, 25068058, 1383323517, 89443699176, 6634682537993, 555501170856934, 51828125728865257, 5332620999430989244, 599894268098223894525, 73253745510185331985842, 9650159930850877102454693, 1364228585624978795929566928, 206008264557747708717576118417
OFFSET
0,2
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..n} (3*n-k+2)^k * (2*n-k)!/(k! * (n-k)!).
PROG
(PARI) a(n) = sum(k=0, n, (3*n-k+2)^k*(2*n-k)!/(k!*(n-k)!))/(n+1);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 29 2024
STATUS
approved