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!)
A296056 Determinant of the inverse of the matrix A_n, where A_n is the n X n matrix defined by A_n[i,j] = 1/C(i+j-2) for 1 <= i,j <= n, and C(k) is the k-th Catalan number (A000108). 1
1, -2, -1400, -679140000, -122489812645200000, -6931927717187904217987200000, -114287375178291587421201860354580633600000, -527655997339226839875614785993553970321322576128000000000, -666218073328701414704702576237379472614149140939534461737723520000000000000 (list; graph; refs; listen; history; text; internal format)
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
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
Sequence in context: A350806 A135129 A212841 * A294089 A157494 A227247
KEYWORD
sign
AUTHOR
Tom Richardson, Dec 03 2017
STATUS
approved

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 19 04:35 EDT 2024. Contains 371782 sequences. (Running on oeis4.)