Find the sum of the first three integers greater than 100 such that the product of any two of the three numbers, increased by 1, is a square number.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
In Small Basic:
For i = 101 To 1000
For j = i To 1000
EndFor
EndFor