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!)
A369832 a(n) is the number of distinct values of the determinant of an n X n symmetric Toeplitz matrix using the first n prime numbers. 6
1, 1, 2, 6, 24, 116, 717, 5033, 40301, 362845 (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[Prime[Range[n]]], i]]], {i, n !}]]; Join[{1}, Array[a, 9]]
PROG
(Python)
from itertools import permutations
from sympy import primerange, prime, Matrix
def A369832(n): return len({Matrix([p[i:0:-1]+p[:n-i] for i in range(n)]).det() for p in permutations(primerange(prime(n)+1))}) if n else 1 # Chai Wah Wu, Feb 11 2024
CROSSREFS
Sequence in context: A221988 A329788 A177518 * A319027 A228397 A164871
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 May 15 06:57 EDT 2024. Contains 372538 sequences. (Running on oeis4.)