A330233 Least MM-numbers of multisets of multisets with a given number of distinct representatives (obtainable by vertex-permutations).
1, 35, 141, 1713, 28011, 355, 34567, 4045, 54849, 64615, 15265, 95363, 126841
Offset: 1
Examples
The sequence of terms together with their corresponding multisets of multisets begins: 1: {} 35: {{2},{1,1}} 141: {{1},{2,3}} 355: {{2},{1,1,3}} 1713: {{1},{2,3,4}} 4045: {{2},{1,1,3,4}} 15265: {{2},{1,4},{1,1,3}} 28011: {{1},{2,3,4,5}} 34567: {{1,2},{3,4,5}} 54849: {{1},{2,3},{4,5}} 64615: {{2},{1,1,3,4,5}} 95363: {{2,3},{1,1,4,5}} 126841: {{3},{1,2},{1,4,5}}
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; graprms[m_]:=Union[Table[Sort[Sort/@(m/.Apply[Rule,Table[{p[[i]],i},{i,Length[p]}],{1}])],{p,Permutations[Union@@m]}]]; dv=Table[Length[graprms[primeMS/@primeMS[n]]],{n,1000}]; Table[Position[dv,i][[1,1]],{i,First/@Gather[dv]}]
Comments