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

A375427
Expansion of e.g.f. exp(-x * (1 - x)^2) / (1 - x)^3.
1
1, 2, 11, 50, 349, 2314, 19903, 173354, 1796345, 19428146, 237268051, 3061371202, 43223040661, 646504620410, 10385505523079, 176415362111354, 3181608981134833, 60451307924295394, 1210235352100542235, 25421507156298185426, 559597201410003990221
OFFSET
0,2
FORMULA
a(n) = (-1)^n * n! * Sum_{k=0..n} binomial(2*k-3,n-k)/k!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-x*(1-x)^2)/(1-x)^3))
(PARI) a(n) = (-1)^n*n!*sum(k=0, n, binomial(2*k-3, n-k)/k!);
CROSSREFS
Sequence in context: A357548 A137960 A018933 * A116586 A119366 A034574
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 14 2024
STATUS
approved