OFFSET
1,1
EXAMPLE
675=3^3*5^2 is a term because it is an Achilles number (powerful but imperfect, see A052486) and it is larger than the sum of its proper divisors (1+3+5+9+15+25+27+45+75+135+225=565).
1125=3^2*5^3 is a term because it is an Achilles number (powerful but imperfect, see A052486) and it is larger than the sum of its proper divisors (1+3+5+9+15+25+45+75+125+225+ 375=903).
MATHEMATICA
q[n_] := Module[{f = FactorInteger[n], p, e}, p = f[[;; , 1]]; e = f[[;; , 2]]; AllTrue[e, # > 1 &] && GCD @@ e == 1 && Times @@ ((p - 1/p^e)/(p - 1)) < 2]; Select[Range[42000], q] (* Amiram Eldar, Dec 17 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Massimo Kofler, Dec 17 2024
STATUS
approved