A069742 Duplicate of A069743.
1, 1, 1, 169, 57122, 1130708969104, 60520841316555286464512
Offset: 1
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.
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.
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]);
a(n) = denominator(matdet(matrix(n, n, i, j, 1/(3^i+3^j)))); \\ Michel Marcus, Jan 06 2025
for(n=1,70,print1(numerator(matdet(matrix(n,n,i,j,1/(2^i+2^j)))),","))
Comments