A339845 Number of distinct sorted degree sequences among all n-vertex loop-graphs without isolated vertices.
1, 1, 4, 10, 35, 111, 392, 1364, 4925, 17845, 65654, 242966, 906417
Offset: 0
Examples
The a(0) = 1 through a(3) = 10 sorted degree sequences: () (2) (1,1) (1,1,2) (1,3) (1,1,4) (2,2) (1,2,3) (3,3) (1,3,4) (2,2,2) (2,2,4) (2,3,3) (2,4,4) (3,3,4) (4,4,4) For example, the loop-graphs {{1,1},{2,2},{3,3},{1,2}} {{1,1},{2,2},{3,3},{1,3}} {{1,1},{2,2},{3,3},{2,3}} {{1,1},{2,2},{1,3},{2,3}} {{1,1},{3,3},{1,2},{2,3}} {{2,2},{3,3},{1,2},{1,3}} all have degrees y = (3,3,2), so y is counted under a(3).
Links
- Eric Weisstein's World of Mathematics, Degree Sequence.
- Gus Wiseman, Counting and ranking factorizations, factorability, and vertex-degree partitions for groupings into pairs.
Crossrefs
See link for additional cross references.
Counting the same partitions by sum gives A339656.
These partitions are ranked by A339658.
The non-covering case (zeros allowed) is A339844.
A007717 counts unlabeled multiset partitions into pairs.
A101048 counts partitions into semiprimes.
A339655 counts non-loop-graphical partitions of 2n.
A339659 counts graphical partitions of 2n into k parts.
Programs
-
Mathematica
Table[Length[Union[Sort[Table[Count[Join@@#,i],{i,n}]]&/@Select[Subsets[Subsets[Range[n],{1,2}]/.{x_Integer}:>{x,x}],Union@@#==Range[n]&]]],{n,0,5}]
Formula
Extensions
a(7)-a(12) from Andrew Howroyd, Jan 10 2024
Comments