[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A091192
Abundant numbers having at least one abundant proper divisor.
4
24, 36, 40, 48, 54, 60, 72, 80, 84, 90, 96, 100, 108, 112, 120, 126, 132, 140, 144, 150, 156, 160, 162, 168, 176, 180, 192, 198, 200, 204, 208, 210, 216, 220, 224, 228, 234, 240, 252, 260, 264, 270, 276, 280, 288, 294, 300, 306, 312, 320, 324, 330, 336, 340
OFFSET
1,1
COMMENTS
A080224(a(n))>1.
LINKS
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