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!)
A336947 E.g.f.: 1 / (exp(-2*x) - x). 5
1, 3, 14, 98, 920, 10792, 151888, 2494032, 46803072, 988095104, 23178247424, 598074306304, 16835199087616, 513385352524800, 16859837094942720, 593234633904293888, 22265289445252628480, 887889931920920313856, 37489832605652634763264, 1670894259596134872711168 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n} (2 * (n-k+1))^k / k!.
a(0) = 1; a(n) = 3 * n * a(n-1) - Sum_{k=2..n} binomial(n,k) * (-2)^k * a(n-k).
a(n) ~ n! / ((1 + LambertW(2)) * (LambertW(2)/2)^(n+1)). - Vaclav Kotesovec, Aug 09 2021
MATHEMATICA
nmax = 19; 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, 19}]
a[0] = 1; a[n_] := a[n] = 3 n a[n - 1] - Sum[Binomial[n, k] (-2)^k a[n - k], {k, 2, n}]; Table[a[n], {n, 0, 19}]
PROG
(PARI) seq(n)={ Vec(serlaplace(1 / (exp(-2*x + O(x*x^n)) - x))) } \\ Andrew Howroyd, Aug 08 2020
CROSSREFS
Sequence in context: A007470 A306986 A074515 * A038051 A132008 A140963
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 08 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 April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)