A382201 MM-numbers of sets of sets with distinct sums.
1, 2, 3, 5, 6, 10, 11, 13, 15, 17, 22, 26, 29, 30, 31, 33, 34, 39, 41, 43, 47, 51, 55, 58, 59, 62, 65, 66, 67, 73, 78, 79, 82, 83, 85, 86, 87, 93, 94, 101, 102, 109, 110, 113, 118, 123, 127, 129, 130, 134, 137, 139, 141, 145, 146, 149, 155, 157, 158, 163, 165
Offset: 1
Keywords
Examples
The terms together with their prime indices of prime indices begin: 1: {} 2: {{}} 3: {{1}} 5: {{2}} 6: {{},{1}} 10: {{},{2}} 11: {{3}} 13: {{1,2}} 15: {{1},{2}} 17: {{4}} 22: {{},{3}} 26: {{},{1,2}} 29: {{1,3}} 30: {{},{1},{2}} 31: {{5}} 33: {{1},{3}} 34: {{},{4}} 39: {{1},{1,2}}
Crossrefs
Set partitions of this type are counted by A275780.
Twice-partitions of this type are counted by A279785.
For just sets of sets we have A302478.
For distinct blocks instead of block-sums we have A302494.
For equal instead of distinct sums we have A302497.
For just distinct sums we have A326535.
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],And@@SquareFreeQ/@prix[#]&&UnsameQ@@Total/@prix/@prix[#]&]
Comments