OFFSET
1,1
COMMENTS
First differs from A074827 in having 104.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
104 has four prime factors (2, 2, 2, 13), while 105 has only three (3, 5, 7), so 104 belongs to the sequence.
MAPLE
R:= NULL: count:= 0: w:= 0:
for n from 2 while count < 100 do
v:= numtheory:-bigomega(n);
if v < w then R:= R, n-1; count:= count+1; fi;
w:= v;
od:
R; # Robert Israel, Jan 16 2023
MATHEMATICA
Select[Range[100], PrimeOmega[#]>PrimeOmega[#+1]&]
Position[Partition[PrimeOmega[Range[200]], 2, 1], _?(#[[1]]>#[[2]]&), 1, Heads -> False]//Flatten (* Harvey P. Dale, Jan 02 2021 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Dec 28 2018
STATUS
approved