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!)
A087488 Number of n X n (-1,1)-matrices with all eigenvalues >= 0. 1
1, 1, 6, 64, 4744, 536736 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
B. D. McKay, F. E. Oggier, G. F. Royle, N. J. A. Sloane, I. M. Wanless and H. S. Wilf, Acyclic digraphs and eigenvalues of (0,1)-matrices, arXiv:math/0310423 [math.CO], 2003.
B. D. McKay, F. E. Oggier, G. F. Royle, N. J. A. Sloane, I. M. Wanless and H. S. Wilf, Acyclic digraphs and eigenvalues of (0,1)-matrices, J. Integer Sequences, 7 (2004), #04.3.3.
EXAMPLE
For n = 2 the six matrices are (+ means +1, - means -1):
++ +- -- -+ +- ++
-- +- ++ -+ -+ ++
with eigenvalues
00 00 00 00 20 20 respectively.
MATHEMATICA
a[n_] := Select[Partition[#, n] & /@ Tuples[{-1, 1}, {n^2}], AllTrue[ Eigenvalues[#], NonNegative]&] // Length; a[0] = 1;
Do[Print[n, " ", a[n]], {n, 0, 5}] (* Jean-François Alcover, Feb 13 2019 *)
CROSSREFS
Sequence in context: A365054 A249592 A333983 * A249896 A249828 A179879
KEYWORD
nonn,more,hard
AUTHOR
Frederique Oggier (frederique.oggier(AT)epfl.ch) and N. J. A. Sloane, Oct 24 2003
EXTENSIONS
a(5) from Jean-François Alcover, Feb 13 2019
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 June 5 08:55 EDT 2024. Contains 373105 sequences. (Running on oeis4.)