OFFSET
1,2
COMMENTS
An anti-deficient number is a number n for which sigma*(n) < n, where sigma*(n) is the sum of the anti-divisors of n. Like A005100 but using anti-divisors. There are only 22 anti-deficient numbers less than 100, 159 less than 1000 and 1547 less than 10000. From an empirical observation it seems that the anti-deficient are approximately less than 18% of the anti-abundant.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..5000 from Paolo P. Lava)
EXAMPLE
24 is anti-deficient because its anti-divisors are 7, 16 and their sum is 23 < 24.
MAPLE
isA192267 := proc(n) A066417(n) < n ; end proc:
for n from 1 to 500 do if isA192267(n) then printf("%d, ", n); end if; end do: # R. J. Mathar, Jul 04 2011
MATHEMATICA
antiDefQ[n_] := Total[Cases[Range[2, n - 1], _?(Abs[Mod[n, #] - #/2] < 1 &)]] < n; Select[Range[300], antiDefQ] (* Amiram Eldar, Jan 13 2022 after Michael De Vlieger at A066417 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, Jun 28 2011
EXTENSIONS
Edited by Ray Chandler, Dec 05 2011
STATUS
approved