A228005 Determinant of the (p_n-1)/2-by-(p_n-1)/2 matrix with (i,j)-entry being the Legendre symbol ((i^2+j^2+1)/p_n), where p_n is the n-th prime.
0, -2, 1, -2, -72, -672, 136, 4352, -265600, 602048, 2658941440, 128532940800, 7138246144, -277070036992, -5928696847474688, 140393397382594560, -476899996446720000, 73073105939334987776, -197109670210161672192
Offset: 2
Keywords
Examples
a(2) = 0 since the Legendre symbol ((1^2+1^2+1)/3) is zero.
Links
- Zhi-Wei Sun, Table of n, a(n) for n = 2..70
Programs
-
Mathematica
a[n_]:=Det[Table[JacobiSymbol[i^2+j^2+1,Prime[n]],{i,1,(Prime[n]-1)/2},{j,1,(Prime[n]-1)/2}]] Table[a[n],{n,2,20}]
Comments