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!)
A336958 E.g.f.: 1 / (exp(2*x) - x). 3
1, -1, -2, 10, 24, -312, -560, 19472, 6272, -1994624, 4072704, 299059968, -1635814400, -60723321856, 628215191552, 15716076562432, -274420622327808, -4900668238036992, 140182198527655936, 1717697481518809088, -83651335147070685184, -590374211868638314496 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n} (-2 * (n-k+1))^k / k!.
a(0) = 1; a(n) = -n * a(n-1) - Sum_{k=2..n} binomial(n,k) * 2^k * a(n-k).
MATHEMATICA
nmax = 21; CoefficientList[Series[1/(Exp[2 x] - x), {x, 0, nmax}], x] Range[0, nmax]!
Table[n! Sum[(-2 (n - k + 1))^k/k!, {k, 0, n}], {n, 0, 21}]
a[0] = 1; a[n_] := a[n] = -n a[n - 1] - Sum[Binomial[n, k] 2^k a[n - k], {k, 2, n}]; Table[a[n], {n, 0, 21}]
CROSSREFS
Sequence in context: A270822 A248117 A345695 * A305600 A058373 A167386
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 13 12:06 EDT 2024. Contains 375138 sequences. (Running on oeis4.)