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!)
A351762 Expansion of e.g.f. 1/(1 - 2*x*exp(x)). 7
1, 2, 12, 102, 1160, 16490, 281292, 5598110, 127326096, 3257961426, 92625793940, 2896747456262, 98827517418456, 3652643136982970, 145385563800940764, 6200097935648462190, 282035994269804870432, 13631368700936950044578, 697586352315912913754916 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n} 2^(n-k) * (n-k)^k/k!.
a(0) = 1 and a(n) = 2 * n * Sum_{k=0..n-1} binomial(n-1,k) * a(k) for n > 0.
a(n) ~ n! / ((1 + LambertW(1/2)) * LambertW(1/2)^n). - Vaclav Kotesovec, Feb 19 2022
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(1-2*x*exp(x))))
(PARI) a(n) = n!*sum(k=0, n, 2^(n-k)*(n-k)^k/k!);
(PARI) a(n) = if(n==0, 1, 2*n*sum(k=0, n-1, binomial(n-1, k)*a(k)));
CROSSREFS
Column k=2 of A351761.
Sequence in context: A113557 A245266 A123897 * A302357 A052693 A050621
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 18 2022
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 May 10 17:06 EDT 2024. Contains 372388 sequences. (Running on oeis4.)