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:
6: {1,2}
12: {1,1,2}
14: {1,4}
15: {2,3}
18: {1,2,2}
24: {1,1,1,2}
26: {1,6}
28: {1,1,4}
33: {2,5}
35: {3,4}
36: {1,1,2,2}
38: {1,8}
42: {1,2,4}
45: {2,2,3}
48: {1,1,1,1,2}
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[2, 100], OddQ[First[prix[#]]+Last[prix[#]]]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Nov 29 2025
STATUS
approved
