OFFSET
1,1
COMMENTS
Contains every deficient number larger than 1 and every primitive abundant number (A071395).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
a(16) = 20 since 20 is smaller than 22, which is the sum of its deficient divisors.
MATHEMATICA
Select[Range@ 105, Function[n, n < Total@ Select[Divisors@ n, DivisorSigma[1, #] < 2 # &]]] (* Michael De Vlieger, Jul 16 2016 *)
PROG
(PARI) isok(n) = n < sumdiv(n, d, d*(sigma(d) < 2*d)); \\ Michel Marcus, Jun 26 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Timothy L. Tiffin, Jul 15 2016
STATUS
approved