A353452 a(n) is the determinant of the n X n symmetric matrix M(n) that is defined as M[i,j] = abs(i - j) if min(i, j) < max(i, j) <= 2*min(i, j), and otherwise 0.
1, 0, -1, 0, 1, -4, 12, 64, -172, -1348, 3456, 34240, -87084, 370640, -872336, -22639616, 52307088, -181323568, 399580288, 23627011200, -51305628400, -686160247552, 1545932859328, 68098264912128, -155370174372864, 6326621032802304, -13829529077133312, -1087288396552040448
Offset: 0
Keywords
Examples
a(8) = -172: 0, 1, 0, 0, 0, 0, 0, 0; 1, 0, 1, 2, 0, 0, 0, 0; 0, 1, 0, 1, 2, 3, 0, 0; 0, 2, 1, 0, 1, 2, 3, 4; 0, 0, 2, 1, 0, 1, 2, 3; 0, 0, 3, 2, 1, 0, 1, 2; 0, 0, 0, 3, 2, 1, 0, 1; 0, 0, 0, 4, 3, 2, 1, 0.
Crossrefs
Programs
-
Mathematica
Join[{1},Table[Det[Table[If[Min[i,j]
-
PARI
a(n) = matdet(matrix(n, n, i, j, if ((min(i,j) < max(i,j)) && (max(i,j) <= 2*min(i,j)), abs(i-j)))); \\ Michel Marcus, Apr 20 2022
-
Python
from sympy import Matrix def A353452(n): return Matrix(n, n, lambda i, j: abs(i-j) if min(i,j)
Chai Wah Wu, Aug 29 2023