OFFSET
0,2
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. 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
Non-isomorphic representatives of the a(0) = 1 through a(2) = 5 set-systems:
{} {} {}
{{1}} {{1}}
{{1},{2}}
{{2},{1,2}}
{{1},{2},{1,2}}
MATHEMATICA
dual[eds_]:=Table[First/@Position[eds, x], {x, Union@@eds}];
Table[Length[Union[normclut/@Select[Subsets[Subsets[Range[n], {1, n}]], UnsameQ@@dual[#]&]]], {n, 0, 3}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Aug 08 2019
EXTENSIONS
a(5) from Max Alekseyev, Oct 11 2023
STATUS
approved