OFFSET
1,2
COMMENTS
Also products of prime numbers of squarefree index with a common sum of prime indices.
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, sum A056239. 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}}.
LINKS
EXAMPLE
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: {{},{},{},{},{}}
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[#]&]
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.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 01 2025
STATUS
approved
