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!)
A354315 Expansion of e.g.f. 1/(1 + x/2 * log(1 - 2 * x)). 2
1, 0, 2, 6, 56, 480, 5664, 75600, 1182208, 20829312, 410768640, 8943010560, 213187497984, 5520777799680, 154333888579584, 4631752470159360, 148523272512307200, 5067610703150284800, 183308248516478828544, 7006773595450681589760, 282194468488468121518080 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = n! * Sum_{k=2..n} 2^(k-2)/(k-1) * a(n-k)/(n-k)!.
a(n) = n! * Sum_{k=0..floor(n/2)} 2^(n-2*k) * k! * |Stirling1(n-k,k)|/(n-k)!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+x/2*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-2)/(j-1)*v[i-j+1]/(i-j)!)); v;
(PARI) a(n) = n!*sum(k=0, n\2, 2^(n-2*k)*k!*abs(stirling(n-k, k, 1))/(n-k)!);
CROSSREFS
Sequence in context: A181509 A213026 A074023 * A000146 A318001 A211933
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 23 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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)