A097695 Largest achievable determinant of a 4 X 4 matrix whose elements are 16 distinct integers chosen from the range -n...n.
10324, 19920, 35791, 60122, 95610, 145362
Offset: 8
Examples
a(8)=10324 because no larger determinant of a 4 X 4 integer matrix b(j,k) with distinct elements -8<=b(j,k)<=8,j=1..4,k=1..4 can be built than det((8,4,3,2),(-1,7,-4,-6),(5,-5,-7,-2),(1,-3,6,-8))=10324.
Crossrefs
Formula
Optimal choices and arrangements: n=8 see example, n=9, 10, 11: det((n, n-1, 7-n, n-5), (5-n, n-4, 1-n, 4-n), (n-2, 2-n, 3-n, 6-n), (n-6, n-7, n-3, -n))= 16*n^4-224*n^3+1334*n^2-3795*n+4341. n=12, 13: det((n, n-5, n-3, 6-n), (n-6, -n, 5-n, 3-n), (7-n, n-1, 4-n, 2-n), (n-2, n-7, 1-n, n-4))= 2*(8*n^4-112*n^3+670*n^2-1947*n+2325). For each n there are (4!)^2=576 equivalent arrangements corresponding to permutations of rows and columns.
Comments