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.

A328061 Number of 4-chromatic Laman graphs on n vertices.

Original entry on oeis.org

1, 8, 102, 1601, 29811, 636686, 15298955, 407748141, 11932078866
Offset: 7

Views

Author

Vsevolod Voronov, Oct 03 2019

Keywords

Comments

All the Laman graphs (in other words, minimally rigid graphs) can be constructed by the inductive Henneberg construction, i.e., a sequence of Henneberg steps starting from K_2. A new vertex added by a Henneberg move is connected with two or three of the previously existing vertices. Hence, the chromatic number of a Laman graph can be 2, 3 or 4. One can hypothesize that the set of 3-chromatic Laman graphs is the largest and that bipartite graphs are relatively rare. The simplest example of a 4-chromatic Laman graph is the Moser spindle.

Crossrefs

Programs

  • Mathematica
    Table[Length[
      Select[LamanGraphs[n],
       IGChromaticNumber[AdjacencyGraph[G2Mat[#]]] == 4 &]], {n, 7, 9}]
    (*  using the program by Christoph Koutschan for generating Laman graphs, see A227117, and IGraph/M interface by Szabolcs Horvát *)
  • nauty
    gensparseg $n -K2 | countg --N # With Laman plugin; see link.

Extensions

a(13)-a(15) added by Georg Grasegger, Sep 09 2024