Gordon Royle has authored 4 sequences.
A348222
Number of uniquely-3-colorable graphs on n vertices.
Original entry on oeis.org
1, 1, 3, 12, 72, 856, 17018, 531568
Offset: 3
a(3) = 1 and a(4) = 1 because the complete graph K3 and K4-e are the only such graphs on 3 and 4 vertices, respectively.
A091969
Related to Gray codes: see Comments lines.
Original entry on oeis.org
1, 1, 1, 4, 28, 550, 28456, 4134861, 1781622569, 2407100396065, 10660643722901700, 159393017165624876022, 8189716815725538561261887
Offset: 1
-
a[1, s_, p_] := a[1, s, p] = If[1 <= s <= p, 1, 0]; a[n_, s_, p_] := a[n, s, p] = If[s < 2^(n - 1), 0, Sum[a[n - 1, s - k, Min[p, k]], {k, 1, Min[p, s]}]]; A091969[n_] := a[n, 2^(n-1), 2^(n-1)]
A091302
Number of equivalence classes of directed Hamiltonian cycles (or Gray codes) in the binary n-cube with one node marked.
Original entry on oeis.org
1, 1, 2, 112, 15109096, 99550593673808010752
Offset: 1
- D. E. Knuth, The Art of Computer Programming, vol. 4A, Combinatorial Algorithms, (to appear), section 7.2.1.1.
a(6) from Michel Deza, Mar 28 2010
a(6) corrected by Haanpaa and Östergård, 2012, who also provided a more precise definition. -
N. J. A. Sloane, Sep 06 2012
A078639
Number of nonisomorphic graphic matroids (by rank or number of vertices).
Original entry on oeis.org
1, 2, 5, 16, 73, 533, 7303
Offset: 1
Comments