login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A317755
Number of multiset partitions of strongly normal multisets of size n such that the blocks have empty intersection.
22
0, 1, 6, 30, 130, 629, 2930, 15019, 78224, 438626, 2548481
OFFSET
1,3
COMMENTS
A multiset is strongly normal if it spans an initial interval of positive integers with weakly decreasing multiplicities.
EXAMPLE
The a(3) = 6 strongly normal multiset partitions with empty intersection:
{{2},{1,1}}
{{1},{2,3}}
{{2},{1,3}}
{{3},{1,2}}
{{1},{1},{2}}
{{1},{2},{3}}
MATHEMATICA
sps[{}]:={{}}; sps[set:{i_, ___}]:=Join@@Function[s, Prepend[#, s]&/@sps[Complement[set, s]]]/@Cases[Subsets[set], {i, ___}];
mps[set_]:=Union[Sort[Sort/@(#/.x_Integer:>set[[x]])]&/@sps[Range[Length[set]]]];
strnorm[n_]:=Flatten[MapIndexed[Table[#2, {#1}]&, #]]&/@IntegerPartitions[n];
Table[Length[Join@@Table[Select[mps[m], Intersection@@#=={}&], {m, strnorm[n]}]], {n, 6}]
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Aug 06 2018
EXTENSIONS
a(10)-a(11) from Robert Price, May 08 2021
STATUS
approved