A326534 MM-numbers of multiset partitions where every part has the same sum.
1, 2, 3, 4, 5, 7, 8, 9, 11, 13, 16, 17, 19, 23, 25, 27, 29, 31, 32, 35, 37, 41, 43, 47, 49, 53, 59, 61, 64, 67, 71, 73, 79, 81, 83, 89, 97, 101, 103, 107, 109, 113, 121, 125, 127, 128, 131, 137, 139, 143, 149, 151, 157, 163, 167, 169, 173, 175, 179, 181, 191
Offset: 1
Keywords
Examples
The sequence of multiset partitions where every part has the same sum, preceded by their MM-numbers, begins: 1: {} 2: {{}} 3: {{1}} 4: {{},{}} 5: {{2}} 7: {{1,1}} 8: {{},{},{}} 9: {{1},{1}} 11: {{3}} 13: {{1,2}} 16: {{},{},{},{}} 17: {{4}} 19: {{1,1,1}} 23: {{2,2}} 25: {{2},{2}} 27: {{1},{1},{1}} 29: {{1,3}} 31: {{5}} 32: {{},{},{},{},{}} 35: {{2},{1,1}}
Links
Crossrefs
Programs
-
Mathematica
primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],SameQ@@Total/@primeMS/@primeMS[#]&]
Comments