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

A377963
Expansion of e.g.f. (1+x) * exp(x*(1+x)^2).
3
1, 2, 7, 34, 173, 1066, 7147, 51962, 412729, 3478258, 31220111, 296409202, 2953487077, 30870965594, 336796018483, 3824230997386, 45114077004017, 551338045973602, 6968344940992279, 90931562913957698, 1222939213021853341, 16929504703420184842, 240909000856701880187
OFFSET
0,2
FORMULA
a(n) = n! * Sum_{k=0..n} binomial(2*k+1,n-k) / k!.
a(n) = a(n-1) + (4*n-3)*a(n-2) + 3*(n-2)*n*a(n-3) for n > 2.
PROG
(PARI) a(n, s=1, t=2) = n!*sum(k=0, n, binomial(t*k+s, n-k)/k!);
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Nov 12 2024
STATUS
approved