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.

A184983 Number of connected 8-regular simple graphs on n vertices with girth exactly 3.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 6, 94, 10786, 3459386, 1470293676, 733351105934
Offset: 0

Views

Author

Jason Kimberley, Feb 28 2011

Keywords

Examples

			a(0)=0 because even though the null graph (on zero vertices) is vacuously 8-regular and connected, since it is acyclic, it has infinite girth.
The a(9)=1 complete graph on 9 vertices is 8-regular; it has 36 edges and 84 triangles.
		

Crossrefs

Connected 8-regular simple graphs with girth at least g: A014378 (g=3), A181154 (g=4).
Connected 8-regular simple graphs with girth exactly g: this sequence (g=3).

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]]];
    A014378 = A@014378;
    A181154 = A@181154;
    a[n_] := A014378[[n + 1]] - A181154[[n + 1]];
    a /@ Range[0, 16] (* Jean-François Alcover, Jan 27 2020 *)

Formula

a(n) = A014378(n) - A181154(n).