OFFSET
1,1
COMMENTS
See the same problem with the sequence A002182 where the ratio r(n) = a(n) / sigma(a(n)).
EXAMPLE
a(3) = 30 because the ratio r(3) = 5 /(2+3+5) = 0.5 is smaller than r(2) = 3/(2 + 3) = 0.6
MAPLE
with(numtheory):r0:=10^10:for x from 2 to 10^7 do: y:=factorset(x):n1:=nops(y):s:=sum(y[i], i=1..n1):r:= evalf(y[n1]/s):if r < r0 then r0:=r: print(x):else fi:od:
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Jan 02 2012
STATUS
approved