The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A355781 E.g.f. satisfies log(A(x)) = 2 * (exp(x) - 1) * A(x). 3
1, 2, 14, 166, 2854, 64854, 1839622, 62688406, 2497159302, 113932356630, 5860555367814, 335639363668118, 21184456464757894, 1461163816568091926, 109351697864286862214, 8825909581376322510230, 764231343305480319046278, 70670539764733828998689302 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: exp( -LambertW(2 * (1 - exp(x))) ).
a(n) = Sum_{k=0..n} 2^k * (k+1)^(k-1) * Stirling2(n,k).
From Vaclav Kotesovec, Jul 18 2022: (Start)
E.g.f.: LambertW(2 * (1 - exp(x))) / (2 * (1 - exp(x))).
a(n) ~ sqrt(2*exp(1) + 1) * sqrt(log(1 + exp(-1)/2)) * n^(n-1) / (exp(n-1) * (log(exp(1) + 1/2) - 1)^n). (End)
MAPLE
b:= proc(n, m) option remember; `if`(n=0,
2^m*(m+1)^(m-1), m*b(n-1, m)+b(n-1, m+1))
end:
a:= n-> b(n, 0):
seq(a(n), n=0..21); # Alois P. Heinz, Jul 29 2022
MATHEMATICA
b[n_, m_] := b[n, m] = If[n == 0, 2^m*(m + 1)^(m - 1), m*b[n - 1, m] + b[n - 1, m + 1]];
a[n_] := b[n, 0];
Table[a[n], {n, 0, 21}] (* Jean-François Alcover, Nov 16 2022, after Alois P. Heinz *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(-lambertw(2*(1-exp(x))))))
(PARI) a(n) = sum(k=0, n, 2^k*(k+1)^(k-1)*stirling(n, k, 2));
CROSSREFS
Sequence in context: A245896 A338632 A124215 * A003582 A372796 A277373
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 16 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 13 17:28 EDT 2024. Contains 372522 sequences. (Running on oeis4.)