OFFSET
0,7
COMMENTS
Gaar and Krenn call these graphs 2-metamour-regular.
LINKS
E. Gaar and D. Krenn, Metamour-regular Polyamorous Relationships and Graphs, arXiv:2005.14121 [math.CO], 2020.
FORMULA
a(n) = p_3(n) + 1 for n >= 9 with p_3(n) being the number of integer partitions of n with parts at least 3 (A008483).
EXAMPLE
For n = 8 vertices, there exist the connected 2-metamour-regular graphs
- c(C_8), c(C_5) join c(C_3), c(C_4) join c(C_4),
- C_8 and
- 3 exceptional graphs,
where C_i is the cycle graph on i vertices, and c(G) is the complement graph of G.
Therefore the unlabeled total is a(8) = 7.
PROG
(SageMath) [(len(Partitions(n, min_part=3)) if n >= 6 else 0)
+ (1 if n >= 5 else 0)
+ {0: 1, 6: 8, 7: 6, 8: 3}.get(n, 0)
for n in srange(52)]
(PARI) a(n)=if(n<9, [1, 0, 0, 0, 0, 1, 11, 9, 7, 5][n+1], numbpart(n)-numbpart(n-1)-numbpart(n-2)+numbpart(n-3)+1) \\ Charles R Greathouse IV, Apr 22 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Daniel Krenn, Apr 21 2020
STATUS
approved