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!)
A219541 Expansion of e.g.f.: Sum_{n>=0} Product_{k=1..n} log(1 + k*x). 1

%I #15 Mar 27 2019 09:55:53

%S 1,1,3,20,242,4584,124936,4638360,225037200,13820428368,1048006461024,

%T 96171381464256,10503700943629824,1346451508974957696,

%U 200184649396819872768,34167655864475762390784,6635466680845611611326464,1454780635849943337186155520

%N Expansion of e.g.f.: Sum_{n>=0} Product_{k=1..n} log(1 + k*x).

%H Vaclav Kotesovec, <a href="/A219541/b219541.txt">Table of n, a(n) for n = 0..144</a>

%F a(n) ~ exp(1/2) * d^(n+1) * (n!)^2, where d = 1/(Ei(1)-gamma) = 1/(A091725 - A001620) = 0.75878167350772..., where Ei is the second exponential integral and gamma is the Euler-Mascheroni constant. - _Vaclav Kotesovec_, Nov 02 2014

%e E.g.f.: A(x) = 1 + x + 3*x^2/2! + 20*x^3/3! + 242*x^4/4! + 4584*x^5/5! + ...

%e where

%e A(x) = 1 + log(1+x) + log(1+x)*log(1+2*x) + log(1+x)*log(1+2*x)*log(1+3*x) + log(1+x)*log(1+2*x)*log(1+3*x)*log(1+4*x) + ...

%p a:=series(add(mul(log(1+k*x),k=1..n),n=0..100),x=0,18): seq(n!*coeff(a,x,n),n=0..17); # _Paolo P. Lava_, Mar 27 2019

%t With[{nmax = 30}, CoefficientList[Series[Sum[Product[Log[1 + j*x], {j, 1, k}], {k,0,3*nmax}], {x,0,nmax}], x]*Range[0, nmax]!] (* _G. C. Greubel_, Sep 04 2018 *)

%o (PARI) {a(n)=n!*polcoeff(sum(m=0,n,prod(k=1,m,log(1+k*x+x*O(x^n)))),n)}

%o for(n=0,25,print1(a(n),", "))

%Y Cf. A091725, A001620.

%K nonn

%O 0,3

%A _Paul D. Hanna_, Nov 22 2012

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 23 08:19 EDT 2024. Contains 371905 sequences. (Running on oeis4.)