OFFSET
1,1
COMMENTS
This sequence is infinite. For example, 216*p is a term for all primes p.
The least odd term of this sequence is a(16317321) = 638512875.
Apparently, this sequence has an asymptotic density of about 0.025.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
216 is a term since it has 8 abundant divisors, {12, 18, 24, 36, 54, 72, 108, 216}, and only 7 deficient divisors, {1, 2, 3, 4, 8, 9, 27}.
MATHEMATICA
ab[n_] := DivisorSigma[1, n] - 2n; moreAbQ[n_] := Count[(abs = ab/@Divisors[n]), _?(# > 0 &)] > Count[abs, _?(# < 0 &)]; Select[Range[50000], moreAbQ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jun 13 2020
STATUS
approved