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!)
A352075 Expansion of e.g.f. sqrt(1 - log(1 - 2*x)). 3
1, 1, 1, 5, 25, 209, 1961, 23589, 321105, 5100801, 90384369, 1792247973, 39011436201, 928869511569, 23953711043289, 666047439187077, 19847286284835105, 631267636613496705, 21339849019758468705, 764149215124570567365, 28891697037933017586105 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-2)^(n-k) * (Product_{j=0..k-1} (-2*j+1)) * Stirling1(n,k).
a(n) ~ n! * 2^(n-1) / (sqrt(log(n)) * n) * (1 - (gamma + 1)/(2*log(n))), where gamma is the Euler-Mascheroni constant A001620. - Vaclav Kotesovec, Mar 05 2022
MATHEMATICA
m = 20; Range[0, m]! * CoefficientList[Series[(1 - Log[1 - 2*x])^(1/2), {x, 0, m}], x] (* Amiram Eldar, Mar 05 2022 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sqrt(1-log(1-2*x))))
(PARI) a(n) = sum(k=0, n, (-2)^(n-k)*prod(j=0, k-1, -2*j+1)*stirling(n, k, 1));
CROSSREFS
Cf. A097397.
Sequence in context: A337041 A254335 A193939 * A229810 A080631 A080632
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 05 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 April 23 15:11 EDT 2024. Contains 371914 sequences. (Running on oeis4.)