cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A320813 Number of non-isomorphic multiset partitions of an aperiodic multiset of weight n such that there are no singletons and all parts are themselves aperiodic multisets.

This page as a plain text file.
%I A320813 #16 Jan 19 2024 16:55:21
%S A320813 1,0,1,2,5,13,33,104,293,938,2892
%N A320813 Number of non-isomorphic multiset partitions of an aperiodic multiset of weight n such that there are no singletons and all parts are themselves aperiodic multisets.
%C A320813 Also the number of nonnegative integer matrices up to row and column permutations with sum of elements equal to n and no zero rows or columns, in which (1) the row sums are all > 1, (2) the positive entries in each row are relatively prime, and (3) the column-sums are relatively prime.
%C A320813 A multiset is aperiodic if its multiplicities are relatively prime.
%C A320813 The weight of a multiset partition is the sum of sizes of its parts. Weight is generally not the same as number of vertices.
%e A320813 Non-isomorphic representatives of the a(2) = 1 through a(5) = 13 multiset partitions:
%e A320813   {{1,2}}  {{1,2,2}}  {{1,2,2,2}}    {{1,1,2,2,2}}
%e A320813            {{1,2,3}}  {{1,2,3,3}}    {{1,2,2,2,2}}
%e A320813                       {{1,2,3,4}}    {{1,2,2,3,3}}
%e A320813                       {{1,2},{3,4}}  {{1,2,3,3,3}}
%e A320813                       {{1,3},{2,3}}  {{1,2,3,4,4}}
%e A320813                                      {{1,2,3,4,5}}
%e A320813                                      {{1,2},{1,2,2}}
%e A320813                                      {{1,2},{2,3,3}}
%e A320813                                      {{1,2},{3,4,4}}
%e A320813                                      {{1,2},{3,4,5}}
%e A320813                                      {{1,3},{2,3,3}}
%e A320813                                      {{1,4},{2,3,4}}
%e A320813                                      {{2,3},{1,2,3}}
%t A320813 sps[{}]:={{}};sps[set:{i_,___}]:=Join@@Function[s,Prepend[#,s]& /@ sps[Complement[set,s]]]/@Cases[Subsets[set],{i,___}];
%t A320813 mpm[n_]:=Join@@Table[Union[Sort[Sort /@ (#/.x_Integer:>s[[x]])]&/@sps[Range[n]]],{s,Flatten[MapIndexed[Table[#2,{#1}]&,#]]& /@ IntegerPartitions[n]}];
%t A320813 brute[m_]:=First[Sort[Table[Sort[Sort /@ (m/.Rule@@@Table[{i,p[[i]]},{i,Length[p]}])], {p,Permutations[Union@@m]}]]];
%t A320813 aperQ[m_]:=Length[m]==0||GCD@@Length/@Split[Sort[m]]==1;
%t A320813 Table[Length[Union[brute /@ Select[mpm[n],And[Min@@Length/@#>1,aperQ[Join@@#]&&And@@aperQ /@ #]&]]],{n,0,7}] (* _Gus Wiseman_, Jan 19 2024 *)
%Y A320813 This is the case of A320804 where the underlying multiset is aperiodic.
%Y A320813 Cf. A000740, A000837, A007716, A007916, A100953, A301700, A302545, A303386, A303546, A303707, A303708, A320797-A320813, A321283, A321390.
%K A320813 nonn,more
%O A320813 0,4
%A A320813 _Gus Wiseman_, Nov 08 2018
%E A320813 Definition corrected by _Gus Wiseman_, Jan 19 2024