OFFSET
1,1
COMMENTS
Where record values of Sum(1/d*_n) occur.
While sigma(n)/n>sigma(m)/m, where n>m, is equivalent to 1/sigma(n)>1/sigma(m) or even to Sum_(1/d_n)>Sum_(1/d_m), where d_n and d_m are the divisors of n and m, with the anti-divisors these equivalences do not hold.
EXAMPLE
3 -> 1/2 = 0.5
5 -> 1/3+1/2 = 5/6 = 0.8333…
7 -> 1/2+1/3+1/5 = 1.0333…
13 -> 1/2+1/3+1/5+1/9 = 1.1444… etc.
MAPLE
with(numtheory);
P:=proc(j)
local b, h, m, r;
b:=0;
for m from 3 to j do
h:=0;
for r from 2 to m-1 do if abs((m mod r)-r/2)<1 then h:=h+1/r; fi; od;
if h>b then b:=h; print(m); fi;
od;
end:
P(100000);
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Sep 02 2011
EXTENSIONS
a(21)-a(36) from Donovan Johnson, Sep 07 2011
STATUS
approved