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!)
A354327 Expansion of e.g.f. 1/(1 + x/4 * log(1 - 2 * x)). 3
1, 0, 1, 3, 22, 180, 1902, 23730, 344872, 5706288, 105960600, 2181449160, 49311653616, 1214109056160, 32339248301808, 926527371653520, 28410493609687680, 928335829570087680, 32201658919855225728, 1181755749910942408320, 45744743939940787150080 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = n! * Sum_{k=2..n} 2^(k-3)/(k-1) * a(n-k)/(n-k)!.
a(n) = n! * Sum_{k=0..floor(n/2)} 2^(n-3*k) * k! * |Stirling1(n-k,k)|/(n-k)!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+x/4*log(1-2*x))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=i!*sum(j=2, i, 2^(j-3)/(j-1)*v[i-j+1]/(i-j)!)); v;
(PARI) a(n) = n!*sum(k=0, n\2, 2^(n-3*k)*k!*abs(stirling(n-k, k, 1))/(n-k)!);
CROSSREFS
Sequence in context: A362691 A138899 A147855 * A278333 A132595 A065204
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 24 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 27 23:22 EDT 2024. Contains 372020 sequences. (Running on oeis4.)