You can put this solution on YOUR website! the sum of the squares of four consecutive integers is 630. Find the intergers.
------------
The hard way:
n^2 + (n+1)^2 + (n+2)^2 + (n+3)^2 = 630
4n^2 + 12n + 14 = 630
4n^2 + 12n - 616 = 0
n = 11
=======================
The easy way:
630/4 = 157.5 =~ 12.5, the center, 2 integers below, 2 above.
--> 11, 12, 13 & 14