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

A375413
Expansion of e.g.f. exp(x^2 * (1 - x)^2) / (1 - x).
2
1, 1, 4, 0, 36, -60, 1920, -1680, 109200, -347760, 9858240, -27941760, 1321911360, -3675672000, 210819248640, -422918496000, 45482678841600, 432259027200, 11915705273472000, 32436011672064000, 3902063601673036800, 25891695005316940800, 1575143884245502771200
OFFSET
0,3
FORMULA
a(n) = (-1)^n * n! * Sum_{k=0..floor(n/2)} binomial(2*k-1,n-2*k)/k!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x^2*(1-x)^2)/(1-x)))
(PARI) a(n) = (-1)^n*n!*sum(k=0, n\2, binomial(2*k-1, n-2*k)/k!);
CROSSREFS
Sequence in context: A270159 A270213 A270184 * A271300 A271120 A174083
KEYWORD
sign
AUTHOR
Seiichi Manyama, Aug 14 2024
STATUS
approved