[go: up one dir, main page]

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!)
A336959 E.g.f.: 1 / (1 - x * exp(-2*x)). 2
1, 1, -2, -6, 40, 120, -1872, -3920, 155776, 56448, -19946240, 44799744, 3588719616, -21265587200, -850126505984, 9423227873280, 251457224998912, -4665150579572736, -88212028284665856, 2663461772025462784, 34353949630376181760, -1756678038088484388864 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n} (-2 * (n-k))^k / k!.
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k) * k * (-2)^(k-1) * a(n-k).
MATHEMATICA
nmax = 21; CoefficientList[Series[1/(1 - x Exp[-2 x]), {x, 0, nmax}], x] Range[0, nmax]!
Join[{1}, Table[n! Sum[(-2 (n - k))^k/k!, {k, 0, n}], {n, 1, 21}]]
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k] k (-2)^(k - 1) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 21}]
CROSSREFS
Sequence in context: A331702 A288491 A212883 * A027161 A081096 A350971
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Aug 09 2020
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 August 30 04:38 EDT 2024. Contains 375526 sequences. (Running on oeis4.)