login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

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 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A271570 Number of distinct eigenvalues of n X n matrices with elements {-1, 0, +1}. 4
3, 21, 375, 24823 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
REFERENCES
Steven E. Thornton & Robert M. Corless, The Bohemian Eigenvalue Project, Poster Presented at The International Symposium on Symbolic and Algebraic Computation (ISSAC 2016). Wilfrid Laurier University, July 19-22, 2016.
LINKS
Robert Corless and Steven Thornton, The Bohemian Eigenvalue Project, 2017 poster.
Steven E. Thornton & Robert M. Corless, The Bohemian Eigenvalue Project.
FORMULA
a(n) <= 3^(n^2). - Robert P. P. McKone, Sep 16 2023
MATHEMATICA
(* Program not suitable to compute more than 3 terms *)
a[n_] := Module[{r, iter}, iter = Table[{r[k], {-1, 0, 1}}, {k, 1, n^2}]; Eigenvalues /@ (Table[Table[(r[# + j]& /@ Range[n]), {j, 0, n^2 - n, n}], Sequence @@ iter // Evaluate] // Flatten[#, n^2 - 1]&) // Flatten // Union // Length];
Table[an = a[n]; Print["a(", n, ") = ", an]; an, {n, 1, 3}] (* Jean-François Alcover, Jun 17 2018 *)
CROSSREFS
Number of characteristic polynomials: A272658.
Cf. A060722.
Sequence in context: A353321 A108716 A358950 * A084620 A120603 A336578
KEYWORD
nonn,more,hard
AUTHOR
Steven E. Thornton, Jul 13 2016
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 December 4 21:08 EST 2023. Contains 367565 sequences. (Running on oeis4.)