OFFSET
1,1
COMMENTS
33075 is the smaller odd term in a longer sequence.
EXAMPLE
72=2^3*3^2 is a term because it is an Achilles number (powerful but imperfect, see A052486) and it is smaller than the sum of its proper divisors (1+2+3+4+6+8+9+12+18+24+36=123).
108=2^2*3^3 is a term because it is an Achilles number (powerful but imperfect, see A052486) and it is smaller than the sum of its proper divisors (1+2+3+4+6+9+12+18+27+36+54=172).
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[16000], q] (* Amiram Eldar, Dec 09 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Massimo Kofler, Dec 09 2024
STATUS
approved