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!)
A352114 Expansion of e.g.f. (1 - log(1 - 4*x))^(1/4). 3
1, 1, 1, 17, 129, 2529, 42753, 1080561, 28269825, 910318785, 31733067777, 1260881785041, 54451914027393, 2588888715388065, 132887134408562433, 7371812870053439409, 437841346658159352321, 27782111830252836998529, 1873198439610729939408897 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-4)^(n-k) * (Product_{j=0..k-1} (-4*j+1)) * Stirling1(n,k).
a(n) ~ n! * 2^(2*n-2) / (log(n)^(3/4) * n) * (1 - 3*(gamma + 1)/(4*log(n))), where gamma is the Euler-Mascheroni constant A001620. - Vaclav Kotesovec, Mar 05 2022
MATHEMATICA
m = 18; Range[0, m]! * CoefficientList[Series[(1 - Log[1 - 4*x])^(1/4), {x, 0, m}], x] (* Amiram Eldar, Mar 05 2022 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace((1-log(1-4*x))^(1/4)))
(PARI) a(n) = sum(k=0, n, (-4)^(n-k)*prod(j=0, k-1, -4*j+1)*stirling(n, k, 1));
CROSSREFS
Cf. A352073.
Sequence in context: A159563 A341397 A229516 * A279637 A179818 A138640
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 05:20 EDT 2024. Contains 371906 sequences. (Running on oeis4.)