OFFSET
1,1
COMMENTS
A080224(a(n))>1.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Abundant Number
EXAMPLE
24 is in the sequence since it is abundant, and 12 is a divisor of 24 which is also abundant.
MATHEMATICA
aQ[n_] := Module[{d = Divisors[n]}, Total@d > 2 n && AnyTrue[d[[2 ;; -2]], DivisorSigma[1, #] > 2# &]]; Select[Range[340], aQ] (* Amiram Eldar, Jun 21 2019 *)
PROG
(PARI) isabund(n) = sigma(n) > 2*n;
isok(n) = {if (isabund(n), fordiv(n, d, if ((d<n) && isabund(d), return(1)); ); ); return (0); } \\ Michel Marcus, Jun 21 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Dec 27 2003
STATUS
approved