A069743 Let M_n be the n X n matrix M_(i,j)=1/(3^i+3^j), then a(n) is the numerator of det(M_n).
1, 1, 1, 169, 57122, 1130708969104, 60520841316555286464512, 967474236461016996630647788281821986816, 3959258211397422699939531791736812415390620457773645692928
Offset: 1
Links
- Robert Israel, Table of n, a(n) for n = 1..21
Programs
-
Maple
f:= proc(n) local M; M:= Matrix(n,n,(i,j) -> 1/(3^i+3^j)); numer(LinearAlgebra:-Determinant(M)) end proc: map(f, [$1..10]); # Robert Israel, Jan 06 2025
-
PARI
for(n=1,15,print1((numerator(matdet(matrix(n,n,i,j,1/(3^j+3^i))))),","))
Comments