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!)
A107254 a(n) = SF(2n-1)/SF(n-1)^2 where SF = A000178. 5

%I #44 Dec 11 2022 10:21:30

%S 1,1,12,8640,870912000,22122558259200000,222531556847250309120000000,

%T 1280394777025250130271722799104000000000,

%U 5746332926632566442385615219551212618645504000000000000

%N a(n) = SF(2n-1)/SF(n-1)^2 where SF = A000178.

%C Inverse product of all matrix elements of n X n Hilbert matrix M(i,j) = 1/(i+j-1) (i,j = 1..n). - _Alexander Adamchuk_, Apr 12 2006

%C The n X n matrix with A(i,j) = 1/(i+j-1)! (i,j = 1..n) has determinant (-1)^floor(n/2)/a(n). - _Mikhail Lavrov_, Nov 01 2022

%H Alois P. Heinz, <a href="/A107254/b107254.txt">Table of n, a(n) for n = 0..20</a>

%H Mathematics Stack Exchange, <a href="https://math.stackexchange.com/questions/4566780">Determinant of a matrix involving factorials</a>.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/HilbertMatrix.html">Hilbert Matrix</a>.

%F a(n) = n!*(n+1)!*(n+2)!*...*(2n-1)!/(0!*1!*2!*3!*...*(n-1)!) = A000178(2n-1)/A000178(n-1)^2 = A079478(n)/A000984(n) = A079478(n-1)*A009445(n-1) = A107252(n)*A000142(n) = A088020(n)/A039622(n).

%F a(n) = 1/Product_{j=1..n} ( Product_{i=1..n} 1/(i+j-1) ). - _Alexander Adamchuk_, Apr 12 2006

%F a(n) = 2^(n*(n-1)) * A136411(n) for n > 0 . - _Robert Coquereaux_, Apr 06 2013

%F a(n) = A136411(n) * A053763(n) for n > 0. [Following remark from _Robert Coquereaux_] - _M. F. Hasler_, Apr 06 2013

%F a(n) ~ A * 2^(2*n^2-1/12) * n^(n^2+1/12) / exp(3*n^2/2+1/12), where A = 1.28242712910062263687534256886979... is the Glaisher-Kinkelin constant (see A074962). - _Vaclav Kotesovec_, Feb 10 2015

%F a(n) = Product_{k=1..n} rf(k,n) where rf denotes the rising factorial. - _Peter Luschny_, Nov 29 2015

%F a(n) = (n! * G(2*n+1))/(G(n+1)*G(n+2)), where G(n) is the Barnes G - function. - _G. C. Greubel_, Apr 21 2021

%e a(3) = 1!*2!*3!*4!*5!/(1!*2!*1!*2!) = 34560/4 = 8640.

%e n = 2: HilbertMatrix[n,n]

%e 1/1 1/2

%e 1/2 1/3

%e so a(2) = 1 / (1 * 1/2 * 1/2 * 1/3) = 12.

%e The n X n Hilbert matrix begins:

%e 1/1 1/2 1/3 1/4 1/5 1/6 1/7 1/8 ...

%e 1/2 1/3 1/4 1/5 1/6 1/7 1/8 1/9 ...

%e 1/3 1/4 1/5 1/6 1/7 1/8 1/9 1/10 ...

%e 1/4 1/5 1/6 1/7 1/8 1/9 1/10 1/11 ...

%e 1/5 1/6 1/7 1/8 1/9 1/10 1/11 1/12 ...

%e 1/6 1/7 1/8 1/9 1/10 1/11 1/12 1/13 ...

%p a:= n-> mul((n+i)!/i!, i=0..n-1):

%p seq(a(n), n=0..10); # _Alois P. Heinz_, Jul 23 2012

%t Table[Product[(i+j-1),{i,1,n},{j,1,n}], {n,1,10}] (* _Alexander Adamchuk_, Apr 12 2006 *)

%t Table[n!*BarnesG[2n+1]/(BarnesG[n+2]*BarnesG[n+1]), {n,0,12}] (* _G. C. Greubel_, Apr 21 2021 *)

%o (Sage)

%o a = lambda n: prod(rising_factorial(k,n) for k in (1..n))

%o print([a(n) for n in (0..10)]) # _Peter Luschny_, Nov 29 2015

%o (Magma)

%o A107254:= func< n | n eq 0 select 1 else (&*[Factorial(n+j)/Factorial(j): j in [0..n-1]]) >;

%o [A107254(n): n in [0..12]]; // _G. C. Greubel_, Apr 21 2021

%Y Cf. A000178, A002457, A005249, A098118.

%K nonn

%O 0,3

%A _Henry Bottomley_, May 14 2005

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 24 19:06 EDT 2024. Contains 371962 sequences. (Running on oeis4.)