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!)
A328007 Expansion of e.g.f. 1 / (2 - exp(-x) / (1 - x)). 1
1, 0, 1, 2, 15, 84, 705, 6222, 65779, 765608, 9999333, 143009250, 2235857943, 37833382716, 689729792713, 13469761663862, 280613761282875, 6211105772020560, 145566258957724845, 3601055676894146442, 93772841089130278495, 2563969299245947753700, 73443322391840827563921 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k) * A000166(k) * a(n-k).
a(n) ~ n! * (-LambertW(-exp(-1)/2) / (2*(1 + LambertW(-exp(-1)/2))^(n+2))). - Vaclav Kotesovec, Oct 02 2019
MATHEMATICA
nmax = 22; CoefficientList[Series[1/(2 - Exp[-x]/(1 - x)), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k] Subfactorial[k] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 22}]
PROG
(PARI) my(x='x+O('x^25)); Vec(serlaplace(1 / (2 - exp(-x) / (1 - x)))) \\ Michel Marcus, Oct 02 2019
CROSSREFS
Sequence in context: A002740 A178750 A108475 * A098624 A116079 A153445
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 01 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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)