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.
Also Heinz numbers of integer partitions where the minimum part is equal to the number of parts (A006141). The Heinz number of an integer partition (y_1, ..., y_k) is prime(y_1) * ... * prime(y_k).
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..10000
EXAMPLE
The sequence of terms together with their prime indices begins:
2: {1}
9: {2,2}
15: {2,3}
21: {2,4}
33: {2,5}
39: {2,6}
51: {2,7}
57: {2,8}
69: {2,9}
87: {2,10}
93: {2,11}
111: {2,12}
123: {2,13}
125: {3,3,3}
129: {2,14}
141: {2,15}
159: {2,16}
175: {3,3,4}
MAPLE
with(numtheory):
q:= n-> is(pi(min(factorset(n)))=bigomega(n)):
select(q, [$2..600])[]; # Alois P. Heinz, Mar 07 2019
MATHEMATICA
Select[Range[2, 100], PrimePi[FactorInteger[#][[1, 1]]]==PrimeOmega[#]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 06 2019
STATUS
approved