A382426 MM-numbers of sets of constant multisets with distinct sums.
1, 2, 3, 5, 6, 7, 10, 11, 14, 15, 17, 19, 21, 22, 23, 30, 31, 33, 34, 38, 41, 42, 46, 51, 53, 55, 57, 59, 62, 66, 67, 69, 77, 82, 83, 85, 93, 95, 97, 102, 103, 106, 109, 110, 114, 115, 118, 119, 123, 127, 131, 133, 134, 138, 154, 155, 157, 159, 161, 165, 166
Offset: 1
Keywords
Examples
The terms together with their prime indices of prime indices begin: 1: {} 2: {{}} 3: {{1}} 5: {{2}} 6: {{},{1}} 7: {{1,1}} 10: {{},{2}} 11: {{3}} 14: {{},{1,1}} 15: {{1},{2}} 17: {{4}} 19: {{1,1,1}} 21: {{1},{1,1}} 22: {{},{3}} 23: {{2,2}} 30: {{},{1},{2}}
Crossrefs
Twice-partitions of this type are counted by A279786.
For just constant blocks we have A302492.
For just distinct sums we have A326535.
Factorizations of this type are counted by A381635.
For strict instead of constant blocks we have A382201.
Normal multiset partitions of this type are counted by A382203.
For equal instead of distinct sums we have A382215.
An opposite version is A382304.
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],UnsameQ@@Total/@prix/@prix[#]&&And@@SameQ@@@prix/@prix[#]&]
Comments