OFFSET
1,1
COMMENTS
The numbers of terms not exceeding 10^k for k = 1, 2, ... are 2, 33, 345, 3393, 33910, 338730, 3387053, 33868719, 338683700, 3386831527, ... Apparently the asymptotic density of this sequence is 0.33868... - Amiram Eldar, Aug 31 2020
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
a(n) is asymptotic to c*n where c=2.94...
MATHEMATICA
rad[n_] := Times @@ FactorInteger[n][[;; , 1]]; Select[Range[100], rad[#] > rad[# + 1] &] (* Amiram Eldar, Aug 31 2020 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Jan 31 2003
STATUS
approved