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!)
A088501 Expansion of e.g.f. 1/(1-2*log(1+x)). 10
1, 2, 6, 28, 172, 1328, 12272, 132480, 1633344, 22663104, 349324608, 5923548288, 109570736256, 2195765044224, 47386235513856, 1095689316882432, 27023900076988416, 708173307424456704, 19649589144733089792 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} Stirling1(n, k)*k!*2^k.
a(n) ~ n! * exp(1/2) / (2 * (exp(1/2)-1)^(n+1)). - Vaclav Kotesovec, May 03 2015
a(0) = 1; a(n) = 2 * Sum_{k=1..n} (-1)^(k-1) * (k-1)! * binomial(n,k) * a(n-k). - Seiichi Manyama, May 22 2022
MATHEMATICA
CoefficientList[Series[1/(1-2*Log[1+x]), {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, May 03 2015 *)
PROG
(PARI) a(n) = sum(k=0, n, k!*2^k*stirling(n, k, 1)); \\ Seiichi Manyama, Feb 03 2022
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(1-2*log(1+x)))) \\ Seiichi Manyama, Feb 03 2022
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=2*sum(j=1, i, (-1)^(j-1)*(j-1)!*binomial(i, j)*v[i-j+1])); v; \\ Seiichi Manyama, May 22 2022
CROSSREFS
Column k=2 of A320080.
Sequence in context: A345367 A156626 A207386 * A140092 A052809 A136631
KEYWORD
easy,nonn
AUTHOR
Vladeta Jovovic, Nov 12 2003
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 16 03:28 EDT 2024. Contains 371696 sequences. (Running on oeis4.)