OFFSET
1,1
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 terms together with their prime indices begin:
2: {1}
9: {2,2}
10: {1,3}
68: {1,1,7}
78: {1,2,6}
98: {1,4,4}
99: {2,2,5}
105: {2,3,4}
110: {1,3,5}
125: {3,3,3}
328: {1,1,1,13}
444: {1,1,2,12}
558: {1,2,2,11}
620: {1,1,3,11}
783: {2,2,2,10}
812: {1,1,4,10}
870: {1,2,3,10}
966: {1,2,4,9}
988: {1,1,6,8}
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], Mean[prix[#]]==PrimeOmega[#]&]
CROSSREFS
The RHS is A001222.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 05 2023
STATUS
approved