A273468
Number of minimally rigid graphs with n vertices constructible by Henneberg type I moves.
Original entry on oeis.org
1, 1, 1, 1, 3, 11, 61, 499, 5500, 75635, 1237670, 23352425, 498028767, 11836515526, 310152665647, 8883427573134
Offset: 1
A single vertex is rigid.
The graph consisting of two vertices joined by an edge is rigid.
A triangle is rigid and it is obtained by a single Henneberg type I move.
One more such move yields the only Laman graph with four vertices.
Also all three Laman graphs with five vertices can be constructed with type I moves. Therefore the first five entries of this sequence agree with A227117.
An example of a Laman graph that cannot be constructed using only Henneberg type I moves is the complete bipartite graph K(3,3).
-
Table[Length[H1LamanGraphs[n]], {n,3,7}] (* see link *)
-
gensparseg $n -H -u # With Laman plugin; see link.
A328060
Number of bipartite Laman graphs on n vertices.
Original entry on oeis.org
1, 1, 0, 0, 0, 1, 1, 5, 19, 123, 871, 8304, 92539, 1210044, 17860267, 293210063, 5277557739, 103177250918, 2174556695546
Offset: 1
- L. Henneberg, Die graphische Statik der starren Systeme, Leipzig, 1911.
- F. Hüffner, tinygraph, software for generating integer sequences based on graph properties.
- Christoph Koutschan, Mathematica program for generating a list of non-isomorphic Laman graphs on n vertices.
- G. Laman, On Graphs and Rigidity of Planar Skeletal Structures, J. Engineering Mathematics, Vol. 4, No. 4, 1970, pp. 331-340.
- Martin Larsson, C program
- A. Nixon and E. Ross, One brick at a time: a survey of inductive constructions in rigidity theory, arXiv:1203.6623 [math.MG], 2012-2013.
- Wikipedia, Laman graph
-
Table[Length[
Select[LamanGraphs[n],
BipartiteGraphQ[AdjacencyGraph[G2Mat[#]]] &]], {n, 6, 9}] (* using the program by Christoph Koutschan for generating Laman graphs, see A227117 *)
a(13)-a(15) added using tinygraph by
Falk Hüffner, Oct 20 2019
A306420
Maximal Laman number among all minimally rigid graphs on n vertices.
Original entry on oeis.org
1, 1, 2, 4, 8, 24, 56, 136, 344, 880, 2288, 6180, 15536, 42780
Offset: 1
A graph with one vertex can be drawn in the plane in a unique way, and similarly the graph with two vertices connected by an edge. The unique minimally rigid graph with three vertices is the triangle, which admits two different embeddings (they differ by reflection). The unique minimally rigid graph with four vertices is a quadrilateral with one diagonal (i.e., we have five edges). By fixing the diagonal, each of the two triangles can be flipped independently, yielding four different embeddings.
- J. Capco, M. Gallet, G. Grasegger, C. Koutschan, N. Lubbes, J. Schicho, The number of realizations of a Laman graph, SIAM Journal on Applied Algebra and Geometry 2(1), pp. 94-125, 2018.
- I. Z. Emiris, E. P. Tsigaridas, A. E. Varvitsiotis, Algebraic methods for counting Euclidean embeddings of graphs. Graph Drawing: 17th International Symposium, pp. 195-200, 2009.
- G. Grasegger, C. Koutschan, E. Tsigaridas, Lower bounds on the number of realizations of rigid graphs, Experimental Mathematics, 2018 (doi: 10.1080/10586458.2018.1437851).
- Jose Capco, Nauty plugin to compute maximal Laman numbers.
- Jose Capco, Matteo Gallet, Georg Grasegger, Christoph Koutschan, Niels Lubbes, and Josef Schicho, The number of realizations of a Laman graph (website).
- Jose Capco, Matteo Gallet, Georg Grasegger, Christoph Koutschan, Niels Lubbes, and Josef Schicho, The number of realizations of a Laman graph, arXiv:1701.05500 [math.AG], 2017
- Ioannis Z. Emiris and Guillaume Moroz, The assembly modes of rigid 11-bar linkages, IFToMM 2011 World Congress, Guanajuato, Mexico, 2011; arXiv:1010.6214 [cs.RO], 2010-2017.
- Georg Grasegger, Explorations on the number of realizations of minimally rigid graphs, arXiv:2502.04736 [math.CO], 2025. See p. 24.
- Georg Grasegger, Christoph Koutschan, and Elias Tsigaridas, Lower bounds on the number of realizations of rigid graphs, arXiv:1710.08237 [math.CO], 2017-2018.
- Christoph Koutschan and Jose Capco, Latest C++ implementation [Broken link]
- G. Laman, On Graphs and Rigidity of Planar Skeletal Structures, J. Engineering Mathematics, Vol. 4, No. 4, 1970, pp. 331-340.
- H. Pollaczek-Geiringer, Über die Gliederung ebener Fachwerke, Zeitschrift für Angewandte Mathematik und Mechanik, Vol. 7, No. 1, 1927, pp. 58-72.
- Wikipedia, Laman graph
a(14) computed and added by
Jose Capco, Oct 02 2023
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
- L. Henneberg, Die graphische Statik der starren Systeme, Leipzig, 1911.
- Christoph Koutschan, Mathematica program for generating a list of non-isomorphic Laman graphs on n vertices.
- G. Laman, On Graphs and Rigidity of Plane Skeletal Structures, J. Engineering Mathematics, Vol. 4, No. 4, 1970, pp. 331-340; alternative link.
- Martin Larsson, Nauty Laman plugin
- A. Nixon, E. Ross, One brick at a time: a survey of inductive constructions in rigidity theory, arXiv:1203.6623 [math.MG], 2012-2013.
- Vsevolod Voronov, Anna Neopryatnaya, and Eugene Dergachev, Constructing 5-chromatic unit distance graphs embedded in the Euclidean plane and two-dimensional spheres, arXiv:2106.11824 [math.CO], 2021.
- Eric Weisstein's World of Mathematics, Moser spindle is a 4-chromatic Laman graph.
- Wikipedia, Laman graph
-
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 *)
-
gensparseg $n -K2 | countg --N # With Laman plugin; see link.
A328419
Number of unlabeled minimally rigid graphs in 3D on n vertices.
Original entry on oeis.org
1, 1, 1, 4, 26, 374, 11487, 612884, 48176183, 5115840190, 698180921122
Offset: 3
- Georg Grasegger, Mathematica program: Minimally rigid graphs in 3D with n<=11 vertices
- Georg Grasegger, C. Koutschan and E. Tsigaridas, Lower bounds on the number of realizations of rigid graphs, arXiv:1710.08237 [math.CO], 2017-2018; Experimental Mathematics, 2018 (doi: 10.1080/10586458.2018.1437851).
- H. Pollaczek-Geiringer, Zur Gliederungstheorie räumlicher Fachwerke, Zeitschrift für Angewandte Mathematik und Mechanik (ZAMM), 12(1932), 369-376 (doi:10.1002/zamm.19320120606).
- Tiong-Seng Tay and Walter Whiteley, Generating Isostatic Frameworks, Structural Topology, 11 (1985), 21-69.
Cf.
A227117 (number of minimally rigid graphs in 2D on n vertices).
Cf.
A374745 (number of (3,6)-tight graphs).
A371901
Number of unlabeled Laman graphs on n vertices of degree at most 4.
Original entry on oeis.org
1, 1, 1, 1, 3, 10, 37, 189, 1145, 8089, 64683, 571949, 5499343, 56899844, 628729114, 7380050235
Offset: 1
A233288
Number of (3/2,2)-tight graphs with 2n vertices, or kinematic chains with 2n links.
Original entry on oeis.org
1, 1, 2, 16, 230, 6856, 318162, 19819281, 1535380884
Offset: 1
For n=1 the single example (a graph with two vertices and one edge) is represented by familiar mechanical systems including door hinges and pairs of scissors. For n=3 the a(3)=2 solutions are the 6-vertex 7-edge graphs Theta(1,3,3) and Theta(2,2,3), each of which has two degree-three vertices connected by three paths of the given lengths. These correspond respectively to the Watt linkage (two four-bar linkages sharing a pair of adjacent links) and the Stephenson linkage.
- Eric A. Butcher and Chris Hartman, Efficient enumeration and hierarchical classification of planar simple-jointed kinematic chains: Application to 12- and 14-bar single degree-of-freedom chains, Mechanism and Machine Theory 30 (2005), 1030-1050.
- Martin Larsson, Nauty Laman plugin
- Audrey Lee and Ileana Streinu, Pebble game algorithms and sparse graphs, Discrete Math. 308 (2008), 1425-1437.
- E. E. Peisakh, Structural analysis of planar jointed mechanisms: Current state and problems, J. Machinery Manufacture and Reliability 37 (2008), 207-212.
- Rajesh P. Sunkari and Linda C. Schmidt, Structural synthesis of planar kinematic chains by adapting a Mckay-type algorithm, Mechanism and Machine Theory 41 (2006), 1021-1030. This paper sources the 19819281 value for n=8 but contains a typo for n=7.
Showing 1-7 of 7 results.
Comments