OFFSET
1,1
COMMENTS
Does this sequence have finite density? - Franklin T. Adams-Watters, Aug 29 2006
The numbers of terms not exceeding 10^k, for k=1,2,..., are 0, 10, 97, 706, 4779, 31249, 203799, 1322874, 8622492, 56559400, ... Apparently this sequence has an asymptotic density 0. - Amiram Eldar, Mar 20 2021
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
45 is a term because 45 = 3^2*5 and 9 (the largest prime-power dividing 45) is not a power of 5 (the largest prime dividing 45).
144 is a term because its largest prime divisor is 3, but the largest prime power divisor, 16, is not a power of 3.
MATHEMATICA
fQ[n_] := Block[{p = Power @@@ FactorInteger[n]}, Last[p] != Max[p]]; Select[Range[540], fQ] (* Ray Chandler, May 11 2007 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Feb 09 2005
EXTENSIONS
More terms from Franklin T. Adams-Watters, Aug 29 2006
STATUS
approved