For the formula below, is there a way to estimate the average minimum value of $n$?
$$x = \sum_{i=1}^n p_i^y$$
Where:
- $x, y, n \in \Bbb N$
- $p$ is a prime number and $p \le 1619$
Examples:
- For $x = 34$, $n = 2$: $$34 = 31^1 + 3^1$$
- For $x = 112$, $n = 2$: $$112 = 109^1 + 3^1$$
- For $x = 1850$, $n = 2$: $$1850 = 43^2 + 2^0$$ Incorrect: $$1850 = 1619^1 + 229^1 + 2^1$$
Rephrasing the question, what value does "minimum" $n$ approach as an average for all $x$?
From the examples it seems to be $2$ but that's obviously not sound reasoning.