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 multisystem 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 multisystem with MM-number 78 is {{},{1},{1,2}}. This sequence lists all MM-numbers of square multiset multisystems, meaning the number of edges is equal to the number of distinct vertices.
EXAMPLE
The sequence of multiset multisystems whose MM-numbers belong to the sequence begins:
1: {}
3: {{1}}
5: {{2}}
7: {{1,1}}
11: {{3}}
15: {{1},{2}}
17: {{4}}
19: {{1,1,1}}
23: {{2,2}}
26: {{},{1,2}}
31: {{5}}
33: {{1},{3}}
35: {{2},{1,1}}
39: {{1},{1,2}}
41: {{6}}
51: {{1},{4}}
53: {{1,1,1,1}}
55: {{2},{3}}
58: {{},{1,3}}
59: {{7}}
65: {{2},{1,2}}
67: {{8}}
69: {{1},{2,2}}
74: {{},{1,1,2}}
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], PrimeOmega[#]==PrimeNu[Times@@primeMS[#]]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Dec 17 2018
STATUS
approved