OFFSET
1,2
COMMENTS
Like A002961 but using anti-divisors.
Curiously 957 and 958 have same sum of divisors and same sum of anti-divisors.
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..1000
EXAMPLE
Anti-divisors of 717 are 2, 5, 6, 7, 35, 41, 205, 287, 478 and their sum is 1066.
Anti-divisors of 718 are 3, 4, 5, 7, 35, 41, 205, 287, 479 and their sum is 1066.
MAPLE
with(numtheory);
P:=proc(n)
local a, b, i, k;
b:=2;
for i from 4 to n do
a:=0;
for k from 2 to i-1 do
if abs((i mod k)- k/2) < 1 then a:=a+k; fi;
od;
if a=b then print(i-1); fi;
b:=a;
od;
end:
P(200000);
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Jul 27 2011
EXTENSIONS
Initial term a(1)=1 inserted, a(2)=9 through a(20)=119337 verified, and a(21)-a(28) added by John W. Layman, Aug 04 2011
STATUS
approved