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

A327606
Expansion of e.g.f. exp(x)*(1-x)*x/(1-2*x)^2.
3
0, 1, 8, 69, 712, 8705, 123456, 1994293, 36163184, 727518177, 16081980760, 387499155461, 10108673620728, 283851555270049, 8536572699232592, 273759055527114165, 9325469762472018016, 336282091434597013313, 12797935594025234906664, 512609204063389138693957
OFFSET
0,3
LINKS
FORMULA
E.g.f: exp(x)*(1-x)*x/(1-2*x)^2.
a(n) = Sum_{k=1..n} k * A326659(n,k).
a(n) ~ n! * exp(1/2) * n * 2^(n-2). - Vaclav Kotesovec, Sep 19 2019
MAPLE
a:= n-> n!*coeff(series(exp(x)*(1-x)*x/(1-2*x)^2, x, n+1), x, n):
seq(a(n), n=0..23);
# second Maple program:
a:= proc(n) option remember; `if`(n<3, n^3,
2*(n+2)*a(n-1)-(4*n-1)*a(n-2)+2*(n-2)*a(n-3))
end:
seq(a(n), n=0..23);
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Exp[x](1-x)(x/(1-2x)^2), {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Mar 15 2020 *)
CROSSREFS
Sequence in context: A152109 A222064 A317096 * A336951 A335114 A226597
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Sep 18 2019
STATUS
approved