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

A033884
Deficiency of n-th deficient number: 2k - sigma(k) for k such that this is > 0.
3
1, 1, 2, 1, 4, 6, 1, 5, 2, 10, 12, 4, 6, 1, 16, 18, 10, 8, 22, 19, 10, 14, 28, 30, 1, 18, 14, 22, 36, 16, 22, 40, 42, 4, 12, 20, 46, 41, 7, 30, 6, 52, 38, 34, 26, 58, 60, 28, 22, 1, 46, 66, 10, 42, 70, 72, 34, 26, 12, 58, 78, 41, 38, 82, 62, 40, 54, 88, 70, 16, 58, 44, 70, 96, 25
OFFSET
1,3
LINKS
MAPLE
with(numtheory): for n from 1 to 500 do if 2*n - sigma(n)> 0 then printf(`%d, `, 2*n - sigma(n)) fi: od:
MATHEMATICA
Select[(2 # - DivisorSigma[1, #]) & /@ Range[100], # > 0 &] (* Amiram Eldar, Aug 03 2019 *)
CROSSREFS
KEYWORD
nonn
EXTENSIONS
More terms from James A. Sellers, Feb 19 2001
STATUS
approved