A339844 Number of distinct sorted degree sequences among all n-vertex loop-graphs.
1, 2, 6, 16, 51, 162, 554, 1918, 6843, 24688, 90342, 333308, 1239725
Offset: 0
Examples
The a(0) = 1 through a(3) = 16 sorted degree sequences: () (0) (0,0) (0,0,0) (2) (0,2) (0,0,2) (1,1) (0,1,1) (1,3) (0,1,3) (2,2) (0,2,2) (3,3) (0,3,3) (1,1,2) (1,1,4) (1,2,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.
The covering case (no zeros) is A339845.
A007717 counts unlabeled multiset partitions into pairs.
A101048 counts partitions into semiprimes.
A339655 counts non-loop-graphical partitions of 2n.
A339656 counts 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}]]&/@Subsets[Subsets[Range[n],{1,2}]/.{x_Integer}:>{x,x}]]],{n,0,5}]
Extensions
a(7)-a(12) from Andrew Howroyd, Jan 10 2024
Comments