A228379 Determinant of the n X n matrix with (i,j)-entry equal to (i^2+j^2)^n for all i,j = 0,...,n-1.
0, -1, -17280, 1168415539200, 980041972344422400000000, -24517645963803990318633839493120000000000, -37442952699741306217982755284947059704721771069440000000000000
Offset: 1
Keywords
Links
- Darij Grinberg, Zhi-Wei Sun, and Lilu Zhao, Proof of three conjectures on determinants related to quadratic residues, arXiv:2007.06453 [math.NT], 2020.
- Zhi-Wei Sun, On some determinants with Legendre symbol entries, preprint, arXiv:1308.2900 [math.NT], 2013-2019.
Crossrefs
Cf. A227609.
Programs
-
Mathematica
a[n_]:=Det[Table[(i^2+j^2)^n,{i,0,n-1},{j,0,n-1}]] Table[a[n],{n,1,7}]
-
PARI
a(n) = matdet(matrix(n, n, i, j, ((i-1)^2+(j-1)^2)^n)); \\ Michel Marcus, Jul 13 2020
Comments