OFFSET
1,1
COMMENTS
A prime index of n is a number m such that prime(m) divides n.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
The sequence of terms together with their prime indices begins:
6: {1,2}
12: {1,1,2}
15: {2,3}
18: {1,2,2}
24: {1,1,1,2}
28: {1,1,4}
30: {1,2,3}
36: {1,1,2,2}
42: {1,2,4}
45: {2,2,3}
48: {1,1,1,1,2}
54: {1,2,2,2}
55: {3,5}
56: {1,1,1,4}
60: {1,1,2,3}
66: {1,2,5}
72: {1,1,1,2,2}
75: {2,3,3}
78: {1,2,6}
84: {1,1,2,4}
MATHEMATICA
Select[Range[100], Or@@Cases[If[#==1, {}, FactorInteger[#]], {p_?(#>2&), _}:>Divisible[#, PrimePi[p]]]&]
CROSSREFS
Complement of A324849.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 18 2019
STATUS
approved