OFFSET
0,5
COMMENTS
A single-component graph is any nonempty connected graph. If the empty graph was allowed, a(1) would be 2 instead of 1.
The sequence can be computed for n > 1 by looking at the graph that results when all valence 1 nodes are removed. This will be a connected graph, and labeling each node with its original valence, the product of the labels will be the original product. Each node must be labeled with at least its valence, and at least 2. Each such labeling, up to graph equivalence, uniquely defines the original graph, so we need only count the labelings for connected graphs with up to BigOmega(n) nodes.
Note, in particular, that a(n) = 1 for any prime, and 2 for any semiprime.
This product for the complete graph on n points is (n-1)^n. For the complete bipartite graph with n and m points in the parts the product is n^m*m^n. For the cyclic graph with n nodes it is 2^n.
LINKS
Andrew Weimholt, Table of n, a(n) for n = 0..255
CROSSREFS
KEYWORD
nice,nonn
AUTHOR
Franklin T. Adams-Watters, Oct 26 2009
EXTENSIONS
Corrected and extended by Andrew Weimholt, Oct 26 2009
STATUS
approved