A330230 Least MM-number of a multiset of multisets with n distinct representatives obtainable by permuting the vertices.
1, 35, 141, 1713, 28011, 355
Offset: 1
Examples
The sequence of terms together with their corresponding multisets of multisets begins: 1: {} 35: {{2},{1,1}} 141: {{1},{2,3}} 1713: {{1},{2,3,4}} 28011: {{1},{2,3,4,5}} 355: {{2},{1,1,3}}
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[Split[Union[dv],#1+1==#2&]]}]
Comments