cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A374618 a(n) is the number of distinct values of the determinant of an n X n symmetric Toeplitz matrix having 0 on the main diagonal and all the integers 1, 2, ..., n-1 off-diagonal.

Original entry on oeis.org

1, 1, 1, 2, 6, 22, 111, 695, 4920, 39881, 360242
Offset: 0

Views

Author

Stefano Spezia, Jul 14 2024

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_]:=CountDistinct[Table[Det[ToeplitzMatrix[Join[{0},Part[Permutations[Range[n-1]], i]]]], {i, (n -1)!}]]; Join[{1}, Array[a, 10]]

Formula

a(n) <= (n-1)! for n > 0.