OFFSET
1,2
COMMENTS
It is conjectured that a(n) is an integer for all n.
The contributor suggests the name "Catbert matrix" for the matrix A_n, based on its similarity to the Hilbert matrix and its relation to the Catalan numbers.
LINKS
Tom Richardson, Table of n, a(n) for n = 1..29
Tom Richardson, Table of n, a(n) for n = 1..100
Thomas M. Richardson, Catalan Numbers and Jacobi Polynomials, arXiv:2005.08939 [math.CO], 2020.
FORMULA
a(n) ~ -c * 16^(n*(n-1)) / (3^n * Pi^n * n^(27/8)), where c = 3*A^(3/2) / (2^(7/6) * exp(1/8) * sqrt(Pi)) = 0.9662886794923866798595701447717791386557874..., where A is the Glaisher-Kinkelin constant A074962. - Vaclav Kotesovec, May 19 2020
MATHEMATICA
a[n_] := 1/Det@ Table[ 1/CatalanNumber[i + j -2], {i, n}, {j, n}]; Array[a, 9] (* Robert G. Wilson v, Jan 05 2018 *)
Table[Product[4^(2*k + 1) * (4*k - 1)/6 * Binomial[2*k - 3/2, k] * Binomial[2*k - 3/2, k + 1], {k, 0, n - 1}], {n, 1, 10}] (* Vaclav Kotesovec, May 19 2020 *)
PROG
(PARI) a(n) = 1/matdet(matrix(n, n, i, j, (i+j-1)/binomial(2*i+2*j-4, i+j-2)))
CROSSREFS
KEYWORD
sign
AUTHOR
Tom Richardson, Dec 03 2017
STATUS
approved
