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!)
A349524 a(n) = Sum_{k=0..n} (2*k+1)^(k-1) * Stirling2(n,k). 8
1, 1, 6, 65, 1059, 23232, 642859, 21507733, 844701160, 38108248719, 1942394699283, 110401966739110, 6923805346540685, 474957822716470901, 35377953843680999326, 2843665890900123673997, 245340865605247369255751, 22614510471168438300336440, 2217985444621941684970200607 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: sqrt(-LambertW(2*(-exp(x) + 1)) / (2*(exp(x) - 1))).
E.g.f.: exp(-LambertW(2 - 2*exp(x))/2).
a(n) ~ c * d^n * n! / n^(3/2), where d = 1/log(1 + 1/(2*exp(1))) and c = sqrt(exp(1) * (1 + 2*exp(1)) * log(1 + 1/(2*exp(1))) / (2*Pi))/2 = 0.3428481589262346912499652905097648170872882109000404115070292580887155335...
a(n) ~ sqrt(1 + 2*exp(1)) * n^(n-1) / (2*exp(n - 1/2) * log(1 + 1/(2*exp(1)))^(n - 1/2)).
E.g.f. satisfies: log(A(x)) = (exp(x) - 1) * A(x)^2.
G.f.: Sum_{k>=0} (2*k+1)^(k-1) * x^k/Product_{j=1..k} (1 - j*x). - Seiichi Manyama, Nov 20 2021
MAPLE
b:= proc(n, m) option remember; `if`(n=0,
(2*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..24); # Alois P. Heinz, Jul 29 2022
MATHEMATICA
Table[Sum[(2*k+1)^(k-1)*StirlingS2[n, k], {k, 0, n}], {n, 0, 20}]
nmax = 20; CoefficientList[Series[Sqrt[-LambertW[2*(-E^x + 1)]/(2*(E^x - 1))], {x, 0, nmax}], x] * Range[0, nmax]!
PROG
(PARI) a(n) = sum(k=0, n, (2*k+1)^(k-1)*stirling(n, k, 2)); \\ Seiichi Manyama, Nov 20 2021
(PARI) 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))) \\ Seiichi Manyama, Nov 20 2021
CROSSREFS
Sequence in context: A360977 A243698 A217899 * A006959 A121017 A239998
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, 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 8 19:26 EDT 2024. Contains 372341 sequences. (Running on oeis4.)