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!)
A336950 E.g.f.: 1 / (1 - x * exp(2*x)). 7
1, 1, 6, 42, 392, 4600, 64752, 1063216, 19952256, 421227648, 9880951040, 254960721664, 7176891675648, 218857588139008, 7187394935347200, 252897556424140800, 9491754142468702208, 378509920569294684160, 15982018774576565649408, 712306819507400060502016 (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).
a(n) ~ n! * (2/LambertW(2))^n / (1 + LambertW(2)). - Vaclav Kotesovec, Aug 09 2021
MATHEMATICA
nmax = 19; 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, 19}]]
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, 19}]
PROG
(PARI) seq(n)={ Vec(serlaplace(1 / (1 - x*exp(2*x + O(x^n))))) } \\ Andrew Howroyd, Aug 08 2020
CROSSREFS
Column k=2 of A351790.
Sequence in context: A074107 A187121 A225497 * A304071 A052608 A245248
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 09:56 EDT 2024. Contains 371967 sequences. (Running on oeis4.)