A370169 Number of unlabeled loop-graphs covering n vertices with at most n edges.
1, 1, 3, 7, 19, 48, 135, 373, 1085, 3184, 9590, 29258, 90833, 285352, 908006, 2919953, 9487330, 31111997, 102934602, 343389708, 1154684849, 3912345408, 13353796977, 45906197103, 158915480378, 553897148543, 1943627750652, 6865605601382, 24411508473314, 87364180212671, 314682145679491
Offset: 0
Keywords
Examples
The a(0) = 1 through a(4) = 19 loop-graph edge sets (loops shown as singletons): {} {{1}} {{1,2}} {{1},{2,3}} {{1,2},{3,4}} {{1},{2}} {{1,2},{1,3}} {{1},{2},{3,4}} {{1},{1,2}} {{1},{2},{3}} {{1},{1,2},{3,4}} {{1},{2},{1,3}} {{1},{2,3},{2,4}} {{1},{1,2},{1,3}} {{1},{2},{3},{4}} {{1},{1,2},{2,3}} {{1,2},{1,3},{1,4}} {{1,2},{1,3},{2,3}} {{1,2},{1,3},{2,4}} {{1},{2},{3},{1,4}} {{1},{2},{1,2},{3,4}} {{1},{2},{1,3},{1,4}} {{1},{2},{1,3},{2,4}} {{1},{2},{1,3},{3,4}} {{1},{1,2},{1,3},{1,4}} {{1},{1,2},{1,3},{2,4}} {{1},{1,2},{2,3},{2,4}} {{1},{1,2},{2,3},{3,4}} {{1},{2,3},{2,4},{3,4}} {{1,2},{1,3},{1,4},{2,3}} {{1,2},{1,3},{2,4},{3,4}}
Links
- Andrew Howroyd, Table of n, a(n) for n = 0..50
Crossrefs
This is the covering case of A370168.
Programs
-
Mathematica
brute[m_]:=First[Sort[Table[Sort[Sort /@ (m/.Rule@@@Table[{(Union@@m)[[i]],p[[i]]},{i,Length[p]}])], {p,Permutations[Range[Length[Union@@m]]]}]]]; Table[Length[Union[brute /@ Select[Subsets[Subsets[Range[n],{1,2}]], Union@@#==Range[n]&&Length[#]<=n&]]],{n,0,5}]
-
PARI
\\ G defined in A070166. a(n)=my(A=O(x*x^n)); if(n==0, 1, polcoef((G(n,A)-G(n-1,A))/(1-x), n)) \\ Andrew Howroyd, Feb 19 2024
Extensions
a(7) onwards from Andrew Howroyd, Feb 19 2024