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

A375426
Expansion of e.g.f. exp(-x * (1 - x)^2) / (1 - x)^2.
1
1, 1, 7, 17, 149, 569, 6019, 34033, 409513, 3261041, 42986591, 451422641, 6486586237, 84605091817, 1334440837339, 20632779265169, 358963187353169, 6363955245003233, 122111809463225143, 2427035466387882961, 51167058284040281701, 1122982719058921672601
OFFSET
0,3
FORMULA
a(n) = (-1)^n * n! * Sum_{k=0..n} binomial(2*k-2,n-k)/k!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-x*(1-x)^2)/(1-x)^2))
(PARI) a(n) = (-1)^n*n!*sum(k=0, n, binomial(2*k-2, n-k)/k!);
CROSSREFS
Sequence in context: A244279 A364703 A325584 * A214149 A147643 A367809
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 14 2024
STATUS
approved