A184993 Number of connected 9-regular simple graphs on 2n vertices with girth exactly 3.
0, 0, 0, 0, 0, 1, 9, 88193, 113314233813
Offset: 0
Examples
a(0)=0 because even though the null graph (on zero vertices) is vacuously 9-regular and connected, since it is acyclic, it has infinite girth. The a(5)=1 complete graph on 10 vertices is 9-regular; it has 45 edges and 120 triangles.
Links
Crossrefs
Programs
-
Mathematica
A[s_Integer] := With[{s6 = StringPadLeft[ToString[s], 6, "0"]}, Cases[ Import["https://oeis.org/A" <> s6 <> "/b" <> s6 <> ".txt", "Table"], {, }][[All, 2]]]; A014381 = A@014381; A181170 = A@181170; a[n_] := A014381[[n + 1]] - A181170[[n + 1]]; a /@ Range[0, 8] (* Jean-François Alcover, Jan 27 2020 *)