Let $f(n)$ denote the sum of squares of digits of $n$, that is
$$ f(10k+r) = \begin{cases} r^2 + f(k) &\text{for }10k+r \neq 0,\\ 0&\text{otherwise}. \end{cases} $$ I've found (while investigating this question) that solutions for
$$n = 2f(n)$$
are quite rare, namely there are only three for $n \leq 10^{10}$ \begin{align} 0 &= 2f(0), \\ 50 &= 2f(50), \\ 298 &= 2f(298). \end{align}
Are there any other solutions (perhaps infinitely many)?
Assume $n$ is a solution to your problem and has $k$ digits in decimal representation. Then $162k \ge 2f(n)=n \ge 10^{k-1}$, especially $162k \ge 10^{k-1}$. But it's easy to see that this only holds for $k \le 3$. Hence, we are only left to check all the numbers from 1 up to 1000 which you apparently already did. Thus, no more solutions.