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!)
A369830 a(n) is the number of distinct values of the determinant of an n X n symmetric Toeplitz matrix using the integers 1 to n. 7
1, 1, 2, 5, 22, 97, 613, 4749, 38493, 353684 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Wikipedia, Toeplitz Matrix.
FORMULA
a(n) <= A000142(n).
MATHEMATICA
a[n_] := CountDistinct[Table[Det[ToeplitzMatrix[Part[Permutations[Range[n]], i]]], {i, n !}]]; Join[{1}, Array[a, 9]]
PROG
(Python)
from itertools import permutations
from sympy import Matrix
def A369830(n): return len({Matrix([p[i:0:-1]+p[:n-i] for i in range(n)]).det() for p in permutations(range(1, n+1))}) # Chai Wah Wu, Feb 12 2024
CROSSREFS
Sequence in context: A371609 A030222 A362790 * A056840 A321608 A241345
KEYWORD
nonn,hard,more
AUTHOR
Stefano Spezia, Feb 03 2024
STATUS
approved

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 August 7 02:33 EDT 2024. Contains 375003 sequences. (Running on oeis4.)