OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..20
EXAMPLE
For n = 3, the determinant of the matrix [1/6, 1/12, 1/30; 1/12, 1/18, 1/36; 1/30, 1/36, 1/54] is 1/145800, so a(3) = 145800.
MAPLE
g:= proc(n) local M;
M:= Matrix(n, n, (i, j) -> 1/(3^i+3^j));
denom(LinearAlgebra:-Determinant(M))
end proc:
map(g, [$1..10]);
PROG
(PARI) a(n) = denominator(matdet(matrix(n, n, i, j, 1/(3^i+3^j)))); \\ Michel Marcus, Jan 06 2025
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Robert Israel, Jan 06 2025
STATUS
approved