OFFSET
0,1
COMMENTS
The dual of a multiset partition has, for each vertex, one block consisting of the indices (or positions) of the blocks containing that vertex, counted with multiplicity. For example, the dual of {{1,2},{2,3}} is {{1},{1,2},{2}}. The T_0 condition means that the dual is strict (no repeated edges).
EXAMPLE
The a(0) = 2 through a(2) = 14 sets of subsets:
{} {} {}
{{}} {{}} {{}}
{{1}} {{1}}
{{},{1}} {{2}}
{{},{1}}
{{},{2}}
{{1},{2}}
{{1},{1,2}}
{{2},{1,2}}
{{},{1},{2}}
{{},{1},{1,2}}
{{},{2},{1,2}}
{{1},{2},{1,2}}
{{},{1},{2},{1,2}}
MATHEMATICA
dual[eds_]:=Table[First/@Position[eds, x], {x, Union@@eds}];
Table[Length[Select[Subsets[Subsets[Range[n]]], UnsameQ@@dual[#]&]], {n, 0, 3}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 07 2019
EXTENSIONS
a(5)-a(8) from Andrew Howroyd, Aug 14 2019
STATUS
approved