OFFSET
1,1
COMMENTS
The primitive abundant number sequence (A071395) is a subsequence of this sequence.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
a(5) = 70 since 70 is smaller than 74, which is the sum of its deficient divisors.
MATHEMATICA
totdef[n_] := Total@Select[Divisors@n, DivisorSigma[-1, #] < 2 &]; Select[Range[570], DivisorSigma[-1, #] > 2 && # < totdef[#] &] (* Giovanni Resta, Jan 09 2013 *)
PROG
(PARI) isok(n) = (sigma(n) > 2*n) && (n < sumdiv(n, d, if (sigma(d) < 2*d, d))); \\ Michel Marcus, Jun 21 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Timothy L. Tiffin, Jan 07 2013
EXTENSIONS
a(21)-a(50) from Giovanni Resta, Jan 09 2013
STATUS
approved