Given n, can we find a triplet a, b, c that fits the following conditions:
n = a*b+c+5
abs(a-b+c) is minimum
but only if
n>a+b+abs(c)+5
Where n, a, b are naturals and c is integer.
For instance in case of n=65, I have a hunch the best choices are:
a = b = 8
c = 1
The...