The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A202139 Expansion of e.g.f. log(1/(1-arctanh(x))). 8

%I #37 Sep 10 2022 14:00:09

%S 0,1,1,4,14,88,544,4688,41712,459520,5333376,71876352,1027670016,

%T 16428530688,278818065408,5167215464448,101437811718144,

%U 2140879726411776,47698275298050048,1130276555155243008,28167446673847812096,740796870212763254784

%N Expansion of e.g.f. log(1/(1-arctanh(x))).

%H Seiichi Manyama, <a href="/A202139/b202139.txt">Table of n, a(n) for n = 0..431</a>

%F a(n) = n! * Sum_{m=1..n} (m-1)! * Sum_{k=0..n-m} Stirling1(k+m,m) * 2^k * binomial(n-1,k+m-1)/(k+m)!.

%F E.g.f.: log(2) - log(2 + log((1-x)/(1+x))). - _Arkadiusz Wesolowski_, Feb 19 2013

%F a(n) ~ n! * ((exp(2)+1)/(exp(2)-1))^n/n. - _Vaclav Kotesovec_, Jun 13 2013

%F a(0) = 0; a(n) = (n mod 2) * (n-1)! + Sum_{k=1..floor(n/2)} (2*k-2)! * binomial(n-1,2*k-1) * a(n-2*k+1). - _Seiichi Manyama_, Apr 30 2022

%t With[{nn=30},CoefficientList[Series[Log[1/(1-ArcTanh[x])],{x,0,nn}],x] Range[0,nn]!] (* _Harvey P. Dale_, Sep 10 2022 *)

%o (Maxima)

%o a(n):=n!*sum(((m-1)!*sum((stirling1(k+m,m)*2^k*binomial(n-1,k+m-1))/(k+m)!,k,0,n-m)),m,1,n);

%o (PARI) a_vector(n) = my(v=vector(n+1)); v[1]=0; for(i=1, n, v[i+1]=(i%2)*(i-1)!+sum(j=1, i\2, (2*j-2)!*binomial(i-1, 2*j-1)*v[i-2*j+2])); v; \\ _Seiichi Manyama_, Apr 30 2022

%Y Cf. A003704, A226968.

%K nonn

%O 0,4

%A _Vladimir Kruchinin_, Dec 12 2011

%E Zero prepended by _Harvey P. Dale_, Sep 10 2022

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 June 4 05:52 EDT 2024. Contains 373089 sequences. (Running on oeis4.)