This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A069640 #23 Sep 26 2018 22:20:12 %S A069640 3,240,378000,10668672000,5175372787200000,42202225467872870400000, %T A069640 5708700736339601341845504000000, %U A069640 12701009683686045652926579789004800000000,462068939479146913162956288390362787269836800000000 %N A069640 Let M_n be the n X n matrix with M_n(i,j)=1/(i+j+1); then a(n)=1/det(M_n). %D A069640 Wolfram Research, 1991 Mathematica Conference, Elementary Tutorial Notes, Section 1, Introduction to Mathematica, Paul Abbott, page 19. %H A069640 Robert Israel, <a href="/A069640/b069640.txt">Table of n, a(n) for n = 1..40</a> %F A069640 a(n) = (2*n+1)!!*(n!*Product[(2*k)!/k!/(k+1)!,{k,0,n}])^2. a(n) = (2*n+1)!!*(n!*A003046(n))^2, where A003046(n)is the Product of first n Catalan numbers A000108(n). a(n) = (2*n+1)!*n!/(2^n)*A003046(n)^2. - _Alexander Adamchuk_, May 17 2006 %F A069640 a(n) ~ A^3 * 2^(2*n^2+3*n+11/12) / (exp(1/4) * n^(7/4) * Pi^(n+1)), where A = 1.2824271291... is the Glaisher-Kinkelin constant (see A074962). - _Vaclav Kotesovec_, Nov 13 2014 %p A069640 seq(1/LinearAlgebra:-Determinant(LinearAlgebra:-HilbertMatrix(n,n,-1)),n=1..10); # _Robert Israel_, Sep 26 2018 %t A069640 Hilbert[n_Integer] := Table[1/(i + j + 1), {i, n}, {j, n}]; Table[ 1 / Det[ Hilbert[n]], {n, 1, 8}] (* _Robert G. Wilson v_, Mar 13 2004 *) %t A069640 Table[(2*n+1)!!*(n!*Product[(2*k)!/k!/(k+1)!,{k,0,n}])^2,{n,1,11}] (* _Alexander Adamchuk_, May 17 2006 *) %t A069640 Table[2^(2*n^2+2*n-1/12) * Glaisher^3 * BarnesG[n+3/2]^2 *(n!)^2 *(2*n+1)!!/(E^(1/4)*Pi^(n+1/2)*BarnesG[n+3]^2), {n, 1, 11}] (* _Vaclav Kotesovec_, Mar 09 2014 *) %o A069640 (PARI) for(n=1,10,print1(1/matdet(matrix(n,n,i,j,1/(i+j+1))),",")) %Y A069640 Cf. A000108, A003046, A005249, A067689, A074962. %K A069640 easy,nonn %O A069640 1,1 %A A069640 _Benoit Cloitre_, Apr 21 2002