OFFSET
1,2
COMMENTS
If the only least deficient numbers are the powers of 2 (open problem) then this sequence is the union of A023196 and A000079.
Like the abundant numbers, this sequence has density between 0.2474 and 0.2480, see A005101. - Charles R Greathouse IV, Nov 30 2022
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..10000 (terms 1..1000 from T. D. Noe)
MATHEMATICA
Select[Range[500], DivisorSigma[1, #] >= 2*# - 1 &] (* Paolo Xausa, Dec 09 2024 *)
PROG
(PARI) for(n=1, 1000, if(sigma(n)>=2*n-1, print(n)));
CROSSREFS
KEYWORD
nonn
AUTHOR
Max Alekseyev, Jan 28 2005
STATUS
approved