OFFSET
1,1
EXAMPLE
20 is in the sequence because it has 2 distinct prime factors (2 and 5) and 5 > sqrt(20).
MAPLE
with(numtheory): a:=proc(n) if nops(factorset(n))=2 and factorset(n)[2]^2>=n then n else fi end: seq(a(n), n=1..170);
MATHEMATICA
tdpfQ[n_]:=Module[{fi=FactorInteger[n]}, Length[fi]==2&&fi[[2, 1]]>Sqrt[n]]; Select[Range[ 200], tdpfQ] (* Harvey P. Dale, Aug 07 2023 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Emeric Deutsch, Feb 02 2006
STATUS
approved