OFFSET
1,2
COMMENTS
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. 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}}.
EXAMPLE
The terms together with the corresponding multigraphs begin:
1: {}
3: {{1}}
5: {{2}}
7: {{1,1}}
9: {{1},{1}}
11: {{3}}
13: {{1,2}}
15: {{1},{2}}
17: {{4}}
21: {{1},{1,1}}
23: {{2,2}}
25: {{2},{2}}
27: {{1},{1},{1}}
29: {{1,3}}
31: {{5}}
33: {{1},{3}}
35: {{2},{1,1}}
39: {{1},{1,2}}
41: {{6}}
43: {{1,4}}
45: {{1},{1},{2}}
47: {{2,3}}
49: {{1,1},{1,1}}
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], OddQ[#]&&Max@@Length/@prix/@prix[#]<=2&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 07 2024
STATUS
approved