OFFSET
1,2
COMMENTS
The numbers of terms not exceeding 10^k for k = 1, 2, ... are 8, 67, 655, 6607, 66090, 661270, 6612947, 66131281, 661316300, 6613168473, ... Apparently the asymptotic density of this sequence is 0.66131... - 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=1.51...
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