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.
EXAMPLE
The sequence of terms together with their prime indices begins:
1: {}
3: {2}
9: {2,2}
10: {1,3}
27: {2,2,2}
28: {1,1,4}
30: {1,2,3}
81: {2,2,2,2}
84: {1,1,2,4}
88: {1,1,1,5}
90: {1,2,2,3}
100: {1,1,3,3}
208: {1,1,1,1,6}
243: {2,2,2,2,2}
252: {1,1,2,2,4}
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[1000], Total[primeMS[#]]==2*PrimeOmega[#]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jan 09 2021
STATUS
approved