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!)
A354240 Expansion of e.g.f. 1/sqrt(1 - 4 * log(1+x)). 7
1, 2, 10, 88, 1080, 17088, 330528, 7558752, 199487136, 5967529152, 199533657792, 7374470138880, 298520508249600, 13135454575464960, 624240306760343040, 31864146725023718400, 1738698154646011499520, 100996114388088994007040 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: Sum_{k>=0} binomial(2*k,k) * log(1+x)^k.
a(n) = Sum_{k=0..n} (2*k)! * Stirling1(n,k)/k!.
a(n) ~ n^n / (sqrt(2) * (exp(1/4)-1)^(n + 1/2) * exp(n - 1/8)). - Vaclav Kotesovec, Jun 04 2022
a(0) = 1; a(n) = Sum_{k=1..n} (-1)^(k-1) * (4 - 2*k/n) * (k-1)! * binomial(n,k) * a(n-k). - Seiichi Manyama, Sep 11 2023
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/sqrt(1-4*log(1+x))))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, binomial(2*k, k)*log(1+x)^k)))
(PARI) a(n) = sum(k=0, n, (2*k)!*stirling(n, k, 1)/k!);
CROSSREFS
Sequence in context: A245496 A185388 A245009 * A306404 A111811 A186448
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 20 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 November 28 15:31 EST 2023. Contains 367419 sequences. (Running on oeis4.)