The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A369834 a(n) is the number of distinct values of the determinant of an n X n symmetric Toeplitz matrix using the integers 0 to n-1. 6

%I #11 Feb 11 2024 11:18:26

%S 1,1,2,5,23,94,614,4628,38243,351024

%N a(n) is the number of distinct values of the determinant of an n X n symmetric Toeplitz matrix using the integers 0 to n-1.

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

%F a(n) <= A000142(n).

%t a[n_] := CountDistinct[Table[Det[ToeplitzMatrix[Part[Permutations[Join[{0}, Range[n - 1]]], i]]], {i, n !}]]; Join[{1}, Array[a,9]]

%o (Python)

%o from itertools import permutations

%o from sympy import Matrix

%o def A369834(n): return len({Matrix([p[i:0:-1]+p[:n-i] for i in range(n)]).det() for p in permutations(range(n))}) # _Chai Wah Wu_, Feb 11 2024

%Y Cf. A000142, A358323, A358324, A358325.

%Y Cf. A369830, A369831, A369832, A369833, A369835.

%K nonn,hard,more

%O 0,3

%A _Stefano Spezia_, Feb 03 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 June 12 21:26 EDT 2024. Contains 373360 sequences. (Running on oeis4.)