Displaying 1-10 of 10 results found.
page
1
Number of Hamiltonian graphs with n nodes.
(Formerly M2764)
+10
50
1, 0, 1, 3, 8, 48, 383, 6196, 177083, 9305118, 883156024, 152522187830, 48322518340547
COMMENTS
a(1) could also be taken to be 0, but I prefer a(1) = 1. - N. J. A. Sloane, Oct 15 2006
REFERENCES
J. P. Dolch, Names of Hamiltonian graphs, Proc. 4th S-E Conf. Combin., Graph Theory, Computing, Congress. Numer. 8 (1973), 259-271.
F. Harary and E. M. Palmer, Graphical Enumeration, Academic Press, NY, 1973, p. 219.
R. C. Read and R. J. Wilson, An Atlas of Graphs, Oxford, 1998.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
J. P. Dolch, Names of Hamiltonian graphs, Proc. 4th S-E Conf. Combin., Graph Theory, Computing, Congress. Numer. 8 (1973), 259-271. (Annotated scanned copy of 3 pages)
Peter Steinbach, Field Guide to Simple Graphs, Volume 1, Part 17 (For Volumes 1, 2, 3, 4 of this book see A000088, A008406, A000055, A000664, respectively.)
CROSSREFS
Unlabeled simple graphs not containing a Hamiltonian cycle are A246446.
Unlabeled simple graphs containing a Hamiltonian path are A057864.
Number of unlabeled n-vertex Hamiltonian digraphs (with loops).
+10
10
COMMENTS
A digraph is Hamiltonian if it contains a directed cycle passing through every vertex exactly once.
EXAMPLE
Non-isomorphic representatives of the a(2) = 3 digraph edge-sets:
{12,21}
{11,12,21}
{11,12,21,22}
MATHEMATICA
dinorm[m_]:=If[m=={}, {}, If[Union@@m!=Range[Max@@Flatten[m]], dinorm[m/. Apply[Rule, Table[{(Union@@m)[[i]], i}, {i, Length[Union@@m]}], {1}]], First[Sort[dinorm[m, 1]]]]];
dinorm[m_, aft_]:=If[Length[Union@@m]<=aft, {m}, With[{mx=Table[Count[m, i, {2}], {i, Select[Union@@m, #1>=aft&]}]}, Union@@(dinorm[#1, aft+1]&)/@Union[Table[Map[Sort, m/. {par+aft-1->aft, aft->par+aft-1}, {0}], {par, First/@Position[mx, Max[mx]]}]]]];
Table[Length[Select[Union[dinorm/@Subsets[Tuples[Range[n], 2]]], FindHamiltonianCycle[Graph[Range[n], DirectedEdge@@@#]]!={}&]], {n, 0, 4}] (* Mathematica 8.0+. Warning: Using HamiltonianGraphQ instead of FindHamiltonianCycle returns a(4) = 867 which is incorrect *)
CROSSREFS
The undirected case is A003216 (without loops) or A326215 (with loops).
Unlabeled non-Hamiltonian digraphs are A326223.
Unlabeled digraphs with a Hamiltonian path are A326221.
Number of non-Hamiltonian unlabeled n-vertex digraphs (with loops).
+10
8
COMMENTS
A digraph is Hamiltonian if it contains a directed cycle passing through every vertex exactly once.
EXAMPLE
Non-isomorphic representatives of the a(2) = 7 digraph edge-sets:
{}
{11}
{12}
{11,12}
{11,21}
{11,22}
{11,12,22}
CROSSREFS
The undirected case is A246446 (without loops) or A326239 (with loops).
Hamiltonian unlabeled digraphs are A326226.
Unlabeled digraphs not containing a Hamiltonian path are A326224.
Number of labeled n-vertex digraphs (without loops) containing a Hamiltonian path.
+10
7
0, 0, 3, 48, 3324, 929005, 1014750550, 4305572108670
EXAMPLE
The a(3) = 48 edge-sets:
{12,23} {12,13,21} {12,13,21,23} {12,13,21,23,31} {12,13,21,23,31,32}
{12,31} {12,13,23} {12,13,21,31} {12,13,21,23,32}
{13,21} {12,13,31} {12,13,21,32} {12,13,21,31,32}
{13,32} {12,13,32} {12,13,23,31} {12,13,23,31,32}
{21,32} {12,21,23} {12,13,23,32} {12,21,23,31,32}
{23,31} {12,21,31} {12,13,31,32} {13,21,23,31,32}
{12,21,32} {12,21,23,31}
{12,23,31} {12,21,23,32}
{12,23,32} {12,21,31,32}
{12,31,32} {12,23,31,32}
{13,21,23} {13,21,23,31}
{13,21,31} {13,21,23,32}
{13,21,32} {13,21,31,32}
{13,23,31} {13,23,31,32}
{13,23,32} {21,23,31,32}
{13,31,32}
{21,23,31}
{21,23,32}
{21,31,32}
{23,31,32}
MATHEMATICA
Table[Length[Select[Subsets[Select[Tuples[Range[n], 2], UnsameQ@@#&]], FindHamiltonianPath[Graph[Range[n], DirectedEdge@@@#]]!={}&]], {n, 4}] (* Mathematica 10.2+ *)
CROSSREFS
The unlabeled undirected case is A057864.
Unlabeled digraphs with a Hamiltonian path are A326221.
Digraphs (without loops) not containing a Hamiltonian path are A326216.
Digraphs (without loops) containing a Hamiltonian cycle are A326219.
Number of non-Hamiltonian labeled n-vertex digraphs (without loops).
+10
7
COMMENTS
A digraph is Hamiltonian if it contains a directed cycle passing through every vertex exactly once.
EXAMPLE
The a(3) = 49 edge-sets:
{} {12} {12,13} {12,13,21} {12,13,21,23}
{13} {12,21} {12,13,23} {12,13,21,31}
{21} {12,23} {12,13,31} {12,13,23,32}
{23} {12,31} {12,13,32} {12,13,31,32}
{31} {12,32} {12,21,23} {12,21,23,32}
{32} {13,21} {12,21,31} {12,21,31,32}
{13,23} {12,21,32} {13,21,23,31}
{13,31} {12,23,32} {13,23,31,32}
{13,32} {12,31,32} {21,23,31,32}
{21,23} {13,21,23}
{21,31} {13,21,31}
{21,32} {13,23,31}
{23,31} {13,23,32}
{23,32} {13,31,32}
{31,32} {21,23,31}
{21,23,32}
{21,31,32}
{23,31,32}
MATHEMATICA
Table[Length[Select[Subsets[Select[Tuples[Range[n], 2], UnsameQ@@#&]], FindHamiltonianCycle[Graph[Range[n], DirectedEdge@@@#]]=={}&]], {n, 4}] (* Mathematica 8.0+. Warning: Using HamiltonianGraphQ instead of FindHamiltonianCycle returns a(4) = 2896 which is incorrect *)
CROSSREFS
Digraphs (without loops) containing a Hamiltonian cycle are A326219.
Digraphs (without loops) not containing a Hamiltonian path are A326216.
Number of labeled n-vertex Hamiltonian digraphs (without loops).
+10
7
COMMENTS
A digraph is Hamiltonian if it contains a directed cycle passing through every vertex exactly once.
EXAMPLE
The a(3) = 15 edge-sets:
{12,23,31} {12,13,21,32} {12,13,21,23,31} {12,13,21,23,31,32}
{13,21,32} {12,13,23,31} {12,13,21,23,32}
{12,21,23,31} {12,13,21,31,32}
{12,23,31,32} {12,13,23,31,32}
{13,21,23,32} {12,21,23,31,32}
{13,21,31,32} {13,21,23,31,32}
MATHEMATICA
Table[Length[Select[Subsets[Select[Tuples[Range[n], 2], UnsameQ@@#&]], FindHamiltonianCycle[Graph[Range[n], DirectedEdge@@@#]]!={}&]], {n, 0, 4}] (* Mathematica 8.0+. Warning: Using HamiltonianGraphQ instead of FindHamiltonianCycle returns a(4) = 1200 which is incorrect *)
CROSSREFS
The undirected case is A326208 (without loops) or A326240 (with loops).
Digraphs (without loops) not containing a Hamiltonian cycle are A326218.
Digraphs (without loops) containing a Hamiltonian path are A326217.
Number of labeled n-vertex digraphs (with loops) containing a (directed) Hamiltonian path.
+10
6
COMMENTS
A path is Hamiltonian if it passes through every vertex exactly once.
EXAMPLE
The a(2) = 12 edge-sets:
{12}
{21}
{11,12}
{11,21}
{12,21}
{12,22}
{21,22}
{11,12,21}
{11,12,22}
{11,21,22}
{12,21,22}
{11,12,21,22}
MATHEMATICA
Table[Length[Select[Subsets[Tuples[Range[n], 2]], FindHamiltonianPath[Graph[Range[n], DirectedEdge@@@#]]!={}&]], {n, 4}] (* Mathematica 10.2+ *)
CROSSREFS
Digraphs not containing a Hamiltonian path are A326213.
Digraphs containing a Hamiltonian cycle are A326204.
Number of labeled n-vertex digraphs (without loops) not containing a (directed) Hamiltonian path.
+10
6
COMMENTS
A path is Hamiltonian if it passes through every vertex exactly once.
EXAMPLE
The a(3) = 16 edge-sets:
{} {12} {12,13}
{13} {12,21}
{21} {12,32}
{23} {13,23}
{31} {13,31}
{32} {21,23}
{21,31}
{23,32}
{31,32}
MATHEMATICA
Table[Length[Select[Subsets[Select[Tuples[Range[n], 2], UnsameQ@@#&]], FindHamiltonianPath[Graph[Range[n], DirectedEdge@@@#]]=={}&]], {n, 4}] (* Mathematica 10.2+ *)
CROSSREFS
Unlabeled digraphs not containing a Hamiltonian path are A326224.
The unlabeled undirected case is A283420.
Digraphs (without loops) containing a Hamiltonian path are A326217.
Digraphs (without loops) not containing a Hamiltonian cycle are A326218.
Number of non-Hamiltonian unlabeled n-vertex digraphs (without loops).
+10
6
1, 0, 2, 12, 157, 5883, 696803, 255954536
COMMENTS
A digraph is Hamiltonian if it contains a directed cycle passing through every vertex exactly once.
CROSSREFS
The undirected case (without loops) is A246446.
Hamiltonian unlabeled digraphs are A326225 (without loops) or A003216 (with loops).
Number of Hamiltonian unlabeled n-vertex graphs with loops.
+10
4
COMMENTS
A graph is Hamiltonian if it contains a cycle passing through every vertex exactly once.
EXAMPLE
Non-isomorphic representatives of the a(3) = 4 edge-sets:
{12,13,23}
{12,13,23,33}
{12,13,22,23,33}
{11,12,13,22,23,33}
Search completed in 0.008 seconds
|