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”).

A182225
Numbers m such that the sum of their divisors smaller than A033880(m) is greater than A033880(m).
4
12, 24, 30, 36, 40, 42, 48, 54, 56, 60, 66, 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, 272, 276, 280, 288, 294, 300, 304, 306, 308, 312
OFFSET
1,1
COMMENTS
Motivated by A100696. Subsequence of A005101: all terms are abundant.
LINKS
MATHEMATICA
aQ[n_] := (ab = DivisorSigma[1, n] - 2 n) > 0 && DivisorSum[n, # &, # < ab &] > ab; Select[Range[312], aQ] (* Amiram Eldar, Sep 08 2019 *)
PROG
(PARI) is_A182225(n)=my(L=sigma(n)-2*n, s=L); fordiv(n, d, d<L||return; (s-=d)<0&return(1))
CROSSREFS
Sequence in context: A333945 A335146 A365008 * A074697 A333919 A289484
KEYWORD
nonn
AUTHOR
M. F. Hasler, Apr 19 2012
STATUS
approved