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!)
A349527 a(n) = Sum_{k=0..n} (-1)^(n-k) * (2*k+1)^(k-1) * Stirling2(n,k). 4
1, 1, 4, 35, 469, 8502, 194807, 5402497, 175985390, 6587650497, 278674144201, 13148017697608, 684554867667117, 38988819551585477, 2411411875573335044, 160951864352781351959, 11531509389384310870257 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
E.g.f. satisfies: log(A(x)) = (1 - exp(-x)) * A(x)^2.
E.g.f.: exp( -LambertW(2 * (exp(-x) - 1))/2 ).
G.f.: Sum_{k>=0} (2*k+1)^(k-1) * x^k/Product_{j=1..k} (1 + j*x).
a(n) ~ sqrt(2*exp(1) - 1) * sqrt(log(2/(2-exp(-1)))) * n^(n-1) / (2 * exp(n - 1/2) * (1 + log(2/(2*exp(1) - 1)))^n). - Vaclav Kotesovec, Nov 21 2021
MATHEMATICA
a[n_] := Sum[(-1)^(n - k) * (2*k + 1)^(k - 1) * StirlingS2[n, k], {k, 0, n}]; Array[a, 17, 0] (* Amiram Eldar, Nov 27 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, (-1)^(n-k)*(2*k+1)^(k-1)*stirling(n, k, 2));
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(-lambertw(2*(exp(-x)-1))/2)))
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=0, N, (2*k+1)^(k-1)*x^k/prod(j=1, k, 1+j*x)))
CROSSREFS
Sequence in context: A367925 A367923 A242795 * A287886 A342207 A224797
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 20 2021
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 23 18:59 EDT 2024. Contains 372765 sequences. (Running on oeis4.)