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:
3: {2}
5: {3}
6: {1,2}
9: {2,2}
10: {1,3}
11: {5}
12: {1,1,2}
17: {7}
18: {1,2,2}
20: {1,1,3}
22: {1,5}
24: {1,1,1,2}
25: {3,3}
27: {2,2,2}
31: {11}
34: {1,7}
36: {1,1,2,2}
MATHEMATICA
Select[Range[100], Length[Union @@ Divisors/@PrimePi/@First/@If[#==1, {}, FactorInteger[#]]]==2&]
CROSSREFS
Subset of A302540.
Subset of A336101 = powers of 2 times powers of primes.
Positions of 2's in A370820.
Counting prime factors instead of divisors gives A371287.
A000005 counts divisors.
A001221 counts distinct prime factors.
A003963 gives product of prime indices.
A076610 lists products of primes of prime index.
A355741 counts choices of a prime factor of each prime index.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 18 2024
STATUS
approved