Numbers which are not the sum of distinct squares: Difference between revisions

Content added Content deleted
Line 39: Line 39:
reduce via subtraction of squares all the numbers above 400 to a number > 128 and < 400 by
reduce via subtraction of squares all the numbers above 400 to a number > 128 and < 400 by
subtracting discrete squares of numbers over 12, since the interval between such squares can
subtracting discrete squares of numbers over 12, since the interval between such squares can
be well below 128: for example, 14^2 - 15^2 is 29. So, we can always find a serial subtraction
be well below 128: for example, |14^2 - 15^2| is 29. So, we can always find a serial subtraction
of discrete integer squares from any number > 400 that targets the interval between 129 and
of discrete integer squares from any number > 400 that targets the interval between 129 and
400. Once we get to that interval, we already have shown in the program below that we can
400. Once we get to that interval, we already have shown in the program below that we can