login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 29 17:08 EDT 2024. Contains 373855 sequences. (Running on oeis4.)