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

A088007
Numbers n such that abs(sigma(n) - 2n) <= sqrt(n).
12
1, 2, 4, 6, 8, 10, 16, 18, 20, 28, 32, 44, 50, 52, 64, 70, 88, 104, 110, 128, 130, 136, 152, 174, 184, 186, 196, 222, 232, 246, 256, 258, 272, 282, 304, 315, 318, 354, 366, 368, 402, 426, 438, 464, 474, 496, 498, 512, 534, 550, 582, 592, 606, 618, 642, 650, 654
OFFSET
1,2
COMMENTS
Abundance-radius = abs(sigma(n)-2n) does not exceed square root.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
MATHEMATICA
abu[x_] := Abs[DivisorSigma[1, x]-2*x] Do[If[ !Greater[abu[n], Sqrt[n]//N], Print[n]], {n, 1, 100000}]
PROG
(PARI) is(n)=abs(sigma(n)-2*n)<=sqrtint(n) \\ Charles R Greathouse IV, Mar 09 2014
KEYWORD
nonn
AUTHOR
Labos Elemer, Oct 20 2003
EXTENSIONS
New name from Charles R Greathouse IV, Mar 09 2014
STATUS
approved