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.

A363064 Number of connected Laplacian integral graphs on n vertices.

Original entry on oeis.org

1, 1, 2, 5, 12, 37, 94, 280, 912, 3164, 8424
Offset: 1

Views

Author

Nathaniel Johnston, May 16 2023

Keywords

Comments

A (simple, undirected) graph is called Laplacian integral if all eigenvalues of its Laplacian matrix are integers. The corresponding sequence that uses the adjacency matrix instead of the Laplacian matrix is A064731.
Since every cograph is Laplacian integral, a(n) >= A000669(n).

Examples

			For n <= 3, all connected graphs are Laplacian integral, so a(n) = A001349(n) when n <= 3.
There is exactly one connected graph on 4 vertices that is not Laplacian integral: the path P_4, which has Laplacian matrix
   1 -1  0  0
  -1  2 -1  0
   0 -1  2 -1
   0  0 -1  1
which has eigenvalues 0, 2, 2-sqrt(2), and 2+sqrt(2), which are not all integers.
		

Crossrefs

Cf. A000669, A001349, A064731, A363065 (include disconnected graphs).

Extensions

a(10) from M. A. Achterberg, May 26 2023
a(11) from Luis M. B. Varona, Apr 27 2025