login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A374282 a(n) is the minimal absolute value of the determinant of a nonsingular n X n symmetric Toeplitz matrix having 0 on the main diagonal and all the integers 1, 2, ..., n-1 off-diagonal. 5

%I #13 Jul 07 2024 05:47:13

%S 1,4,12,2,13,16,21,4,1

%N a(n) is the minimal absolute value of the determinant of a nonsingular n X n symmetric Toeplitz matrix having 0 on the main diagonal and all the integers 1, 2, ..., n-1 off-diagonal.

%C The offset is 2 because for n = 1 the matrix is null, and hence, singular.

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Toeplitz_matrix">Toeplitz Matrix</a>.

%e a(5) = 2:

%e [0, 4, 1, 2, 3]

%e [4, 0, 4, 1, 2]

%e [1, 4, 0, 4, 1]

%e [2, 1, 4, 0, 4]

%e [3, 2, 1, 4, 0]

%t a[n_]:=Min[Select[Table[Abs[Det[ToeplitzMatrix[Join[{0},Part[Permutations[Range[n-1]],i]]]]],{i,(n-1)!}],Positive]]; Array[a,9,2]

%Y Cf. A085750, A358325.

%Y Cf. A085807 (minimal permanent), A374279 (minimal signed), A374280 (maximal signed), A374281 (maximal absolute value), A374283 (maximal permanent).

%K nonn,hard,more

%O 2,2

%A _Stefano Spezia_, Jul 02 2024

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 22 17:16 EDT 2024. Contains 374540 sequences. (Running on oeis4.)