A382304 MM-numbers of multiset partitions into sets with a common sum.
1, 2, 3, 4, 5, 8, 9, 11, 13, 16, 17, 25, 27, 29, 31, 32, 41, 43, 47, 59, 64, 67, 73, 79, 81, 83, 101, 109, 113, 121, 125, 127, 128, 137, 139, 143, 149, 157, 163, 167, 169, 179, 181, 191, 199, 211, 233, 241, 243, 256, 257, 269, 271, 277, 283, 289, 293, 313, 317
Offset: 1
Keywords
Examples
The terms together with their prime indices of prime indices begin: 1: {} 2: {{}} 3: {{1}} 4: {{},{}} 5: {{2}} 8: {{},{},{}} 9: {{1},{1}} 11: {{3}} 13: {{1,2}} 16: {{},{},{},{}} 17: {{4}} 25: {{2},{2}} 27: {{1},{1},{1}} 29: {{1,3}} 31: {{5}} 32: {{},{},{},{},{}}
Links
Crossrefs
Set partitions of this type are counted by A035470.
Twice-partitions of this type are counted by A279788.
For just strict blocks we have A302478.
Factorizations of this type are counted by A382080.
For distinct instead of equal sums we have A382201.
For constant instead of strict blocks we have A382215.
Normal multiset partitions of this type are counted by A382429.
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],SameQ@@Total/@prix/@prix[#]&&And@@UnsameQ@@@prix/@prix[#]&]
Comments