login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A374619
a(n) is the number of distinct values of the determinant of an n X n symmetric Toeplitz matrix having 1 on the main diagonal and all the first n-1 primes off-diagonal.
4
1, 1, 1, 2, 6, 22, 120, 717, 5039, 40312, 362874
OFFSET
0,4
FORMULA
a(n) <= (n-1)! for n > 0.
MATHEMATICA
a[n_]:=CountDistinct[Table[Det[ToeplitzMatrix[Join[{1}, Part[Permutations[Prime[Range[n-1]]], i]]]], {i, (n -1)!}]]; Join[{1}, Array[a, 10]]
KEYWORD
nonn,hard,more
AUTHOR
Stefano Spezia, Jul 14 2024
STATUS
approved