OFFSET
0,4
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,2}} is {{1},{1,2,2}}. For an integer partition the T_0 condition means the dual of the multiset partition obtained by factoring each part into prime numbers is strict (no repeated blocks).
EXAMPLE
The a(11) = 10 integer partitions are (11), (7,4), (8,3), (9,2), (5,4,2), (6,3,2), (6,4,1), (7,3,1), (8,2,1), (5,3,2,1). Missing from this list are (6,5) and (10,1).
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]]
dual[eds_]:=Table[First/@Position[eds, x], {x, Union@@eds}]
Table[Length[Select[IntegerPartitions[n], UnsameQ@@#&&UnsameQ@@dual[primeMS/@#]&]], {n, 60}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Sep 26 2018
STATUS
approved