Can we, for every natural $n>1$, find such a natural number $k$ that sum of $n$ squares of consecutive natural numbers starting with $k$, that is $k^2+(k+1)^2+...+(k-1+n)^2$, will be equal to the sum of squares of next $n-1$ consecutive numbers that follow after them, i.e. $(k+n)^2+...+((k+n-1)+(n-1))^2$?
For $n=2$ we have Pythagorean triple $(3,4,5)$
$$3^2+4^2=5^2$$
For $n=3$, if start from number $10$, then we have that sum of squares of $n=3$ consecutive numbers (i.e. $10,11,12$) sums up to the sum of squares of the next $n-1=2$ consecutive numbers ($13,14$):
$$10^2+11^2+12^2=365=13^2+14^2$$
For $n=4$ we can have this same pattern for numbers $21,22,23,24$, followed by $4-1=3$ next numbers, i.e. $25,26,27$:
$$21^2+22^2+23^2+24^2=25^2+26^2+27^2$$
What about $n=5$ or some other $n>4$? Can we always do this?
I use different variables: Let $k$ be the number of summands on the right and $m^2$ the greatest Summand on the left. (Thus for $3^2+4^2=5^2$, we have $m=4$ and $k+1$). Rearrange $$(m-k)^2+\cdots+(m-1)^2+m^2=(m+1)^2+\cdots+(m+k)^2$$ buy moving all but $m^2$ to the right while observing $(m+i)^2-(m-i)^2=4mi$: $$m^2=4m(1+2+\cdots+k)=2mk(k+1)$$ so that $$m=2k(k+1).$$ As expected, $k=1$ gives $n=4$. Also, $k=2$ gives $m=12$, etc.