login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A330104 MM-numbers of brute-force normalized multisets of multisets. 19

%I #7 Dec 03 2019 07:09:16

%S 1,2,3,4,6,7,8,9,12,13,14,15,16,18,19,21,24,26,27,28,30,32,36,37,38,

%T 39,42,45,48,49,52,53,54,56,57,60,63,64,69,72,74,76,78,81,84,89,90,91,

%U 96,98,104,105,106,108,111,112,113,114,117,120,126,128,131,133

%N MM-numbers of brute-force normalized multisets of multisets.

%C First differs from A330060 and A330108 in having 69 and lacking 35, with corresponding multisets of multisets 69: {{1},{2,2}} and 35: {{2},{1,1}}.

%C First differs from A330120 in having 435 and lacking 429, with corresponding multisets of multisets 435: {{1},{2},{1,3}} and 429: {{1},{3},{1,2}}.

%C We define the brute-force normalization of a multiset of multisets to be obtained by first normalizing so that the vertices cover an initial interval of positive integers, then applying all permutations to the vertex set, and finally taking the least representative, where the ordering of multisets is first by length and then lexicographically.

%C For example, 15301 is the MM-number of {{3},{1,2},{1,1,4}}, which has the following normalizations together with their MM-numbers:

%C Brute-force: 43287: {{1},{2,3},{2,2,4}}

%C Lexicographic: 43143: {{1},{2,4},{2,2,3}}

%C VDD: 15515: {{2},{1,3},{1,1,4}}

%C MM: 15265: {{2},{1,4},{1,1,3}}

%C A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798. The multiset of multisets with MM-number n is formed by taking the multiset of prime indices of each part of the multiset of prime indices of n. For example, the prime indices of 78 are {1,2,6}, so the multiset of multisets with MM-number 78 is {{},{1},{1,2}}.

%e The sequence of all brute-force normalized multisets of multisets together with their MM-numbers begins:

%e 1: 0 21: {1}{11} 52: {}{}{12} 89: {1112}

%e 2: {} 24: {}{}{}{1} 53: {1111} 90: {}{1}{1}{2}

%e 3: {1} 26: {}{12} 54: {}{1}{1}{1} 91: {11}{12}

%e 4: {}{} 27: {1}{1}{1} 56: {}{}{}{11} 96: {}{}{}{}{}{1}

%e 6: {}{1} 28: {}{}{11} 57: {1}{111} 98: {}{11}{11}

%e 7: {11} 30: {}{1}{2} 60: {}{}{1}{2} 104: {}{}{}{12}

%e 8: {}{}{} 32: {}{}{}{}{} 63: {1}{1}{11} 105: {1}{2}{11}

%e 9: {1}{1} 36: {}{}{1}{1} 64: {}{}{}{}{}{} 106: {}{1111}

%e 12: {}{}{1} 37: {112} 69: {1}{22} 108: {}{}{1}{1}{1}

%e 13: {12} 38: {}{111} 72: {}{}{}{1}{1} 111: {1}{112}

%e 14: {}{11} 39: {1}{12} 74: {}{112} 112: {}{}{}{}{11}

%e 15: {1}{2} 42: {}{1}{11} 76: {}{}{111} 113: {123}

%e 16: {}{}{}{} 45: {1}{1}{2} 78: {}{1}{12} 114: {}{1}{111}

%e 18: {}{1}{1} 48: {}{}{}{}{1} 81: {1}{1}{1}{1} 117: {1}{1}{12}

%e 19: {111} 49: {11}{11} 84: {}{}{1}{11} 120: {}{}{}{1}{2}

%t primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];

%t brute[m_]:=If[Union@@m!={}&&Union@@m!=Range[Max@@Flatten[m]],brute[m/.Rule@@@Table[{(Union@@m)[[i]],i},{i,Length[Union@@m]}]],First[Sort[brute[m,1]]]];

%t brute[m_,1]:=Table[Sort[Sort/@(m/.Rule@@@Table[{i,p[[i]]},{i,Length[p]}])],{p,Permutations[Union@@m]}];

%t Select[Range[100],Sort[primeMS/@primeMS[#]]==brute[primeMS/@primeMS[#]]&]

%Y Equals the image/fixed points of the idempotent sequence A330105.

%Y Non-isomorphic multiset partitions are A007716.

%Y Cf. A000612, A055621, A283877, A316983, A317533, A330098, A330101, A330103.

%Y Other fixed points:

%Y - Brute-force: A330104 (multisets of multisets), A330107 (multiset partitions), A330099 (set-systems).

%Y - Lexicographic: A330120 (multisets of multisets), A330121 (multiset partitions), A330110 (set-systems).

%Y - VDD: A330060 (multisets of multisets), A330097 (multiset partitions), A330100 (set-systems).

%Y - MM: A330108 (multisets of multisets), A330122 (multiset partitions), A330123 (set-systems).

%Y - BII: A330109 (set-systems).

%K nonn,eigen

%O 1,2

%A _Gus Wiseman_, Dec 02 2019

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 13:04 EDT 2024. Contains 371913 sequences. (Running on oeis4.)