OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
The sequence of terms together with their prime indices begins:
2: {1}
3: {2}
5: {3}
6: {1,2}
7: {4}
9: {2,2}
10: {1,3}
11: {5}
13: {6}
14: {1,4}
15: {2,3}
17: {7}
19: {8}
20: {1,1,3}
21: {2,4}
22: {1,5}
23: {9}
25: {3,3}
26: {1,6}
28: {1,1,4}
MAPLE
with(numtheory):
q:= n-> is(pi(max(factorset(n)))>=bigomega(n)):
select(q, [$2..100])[]; # 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