Show that $\forall n\in\mathbb{N}$, $14^n$ can be represented as a sum of three perfect squares.
I checked $(\mod 7)$ and deduced that the three squares can be $1,4,2(\mod 7) $ or all divisible by $7$ and for $n \ge 2$ they must be all divisible by $4$. But I am stuck here.
You can use induction.
Step 1:
When $n = 1$, we have $14 = 3^2 + 2^2 + 1^2$
When $n = 2$, we have $14^2 = 12^2 + 6^2 + 4^2$
Step 2: Suppose the statment is right for all $1 \le k \le n$.
In particular, $\exists a, b, c > 0$ s.t. $14^{n-1} = a^2 + b^2 + c^2$
Then for $n + 1$,
$14^{n+1} = 14^{n-1+2} = 14^{n-1} \times 14^2 $
$= 14^2\times a^2 + 14^2\times b^2 + 14^2\times c^2$
$= (14 \times a)^2 + (14 \times b)^2 + (14 \times c)^2$
Finally we can say the statement is true.