OFFSET
0,3
COMMENTS
It doesn't matter for this sequence whether we use loops such as {x,x} or half-loops such as {x}.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..200
Eric Weisstein's World of Mathematics, Graph Loop.
FORMULA
a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * binomial(binomial(k+1,2), n). - Andrew Howroyd, Jan 06 2024
EXAMPLE
The a(0) = 1 through a(3) = 17 set-systems:
{} {{1}} {{1},{2}} {{1},{2},{3}}
{{1},{1,2}} {{1},{2},{1,3}}
{{2},{1,2}} {{1},{2},{2,3}}
{{1},{3},{1,2}}
{{1},{3},{2,3}}
{{2},{3},{1,2}}
{{2},{3},{1,3}}
{{1},{1,2},{1,3}}
{{1},{1,2},{2,3}}
{{1},{1,3},{2,3}}
{{2},{1,2},{1,3}}
{{2},{1,2},{2,3}}
{{2},{1,3},{2,3}}
{{3},{1,2},{1,3}}
{{3},{1,2},{2,3}}
{{3},{1,3},{2,3}}
{{1,2},{1,3},{2,3}}
MATHEMATICA
Table[Length[Select[Subsets[Subsets[Range[n], {1, 2}], {n}], Union@@#==Range[n]&]], {n, 0, 5}]
PROG
(PARI) a(n) = sum(k=0, n, (-1)^(n-k) * binomial(n, k) * binomial(binomial(k+1, 2), n)) \\ Andrew Howroyd, Jan 06 2024
CROSSREFS
This is the covering case of A014068.
The unlabeled version is A368599.
The version contradicting strict AOC is A368730.
The connected case is A368951.
A000085 counts set partitions into singletons or pairs.
A100861 counts set partitions into singletons or pairs by number of pairs.
A111924 counts set partitions into singletons or pairs by length.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 04 2024
EXTENSIONS
Terms a(7) and beyond from Andrew Howroyd, Jan 06 2024
STATUS
approved