OFFSET
1,1
COMMENTS
The least odd term is a(470) = A357607(1) = 4725.
The numbers of terms not exceeding 10^k, for k = 2, 3, ..., are 5, 92, 1011, 10160, 102125, 1022881, 10231151, 102249758, 1022781199, 10229781638, ... . Apparently, the asymptotic density of this sequence exists and equals 0.102... .
An analog of abundant numbers, in which the divisor sum is restricted to nonsquarefree divisors. - Peter Munn, Oct 26 2022
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
36 is a term since A162296(36) = 79 > 2*36.
MATHEMATICA
q[n_] := Module[{f = FactorInteger[n], p, e}, p = f[[;; , 1]]; e = f[[;; , 2]]; Times @@ ((p^(e + 1) - 1)/(p - 1)) - Times @@ (p + 1) > 2*n]; Select[Range[2, 1000], q]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Oct 06 2022
STATUS
approved