As everyone knows, the solution to $a^x=b$ is $x=\log_a{b}$. (Edit: Corrected from $x=\log_b{a}$.)
But what about $a^x+b^x=c$?
Let's define a "multilogarithm" function as:
$a_0^x+a_1^x+...+a_n^x=b$
$x=\text{Lg}\left(b\mid a_0, a_1,...,a_n\right)$.
For example, $3^x=40000$ gives $x=\log_3\left(40000\right)$, and $2^x+e^x+3^x+10^x=20000$ would give $x=\text{Lg}\left(20000\mid 2, e, 3, 10\right)$.
First, is there an infinite series for a logarithm that converges for all positive numbers?
And what would be an appropriate series for the multilogarithm?
Is there already a name for this type of function?
May be an idea for a sequence (not a series).
Let us suppose (for the time being) that $1 <a_0 <a_1< \cdots < a_n$, $b >n+1$ and that a solution exists.
So, we want to solve $$\log(a_n^x)=\log\left(b-\sum_{i=0}^{n-1} a_i^x\right)$$ that is to say to find the zero of function $$f(x)=x \log(a_n)-\log\left(b-\sum_{i=0}^{n-1} a_i^x\right)$$ Newton iterates could be a way to build a converging sequence (being lazy, let us start with $x_0=0$ (knowing in advance that we shall face one overshoot of the solution since $f(0)\times f''(0) < 0$ - Darboux-Fourier theorem).
Let me try with $a_n=p_{n+1}$ and $n=10$ and $b=10^6$
Newton iterates would be $$\left( \begin{array}{cc} k & x_k \\ 0 & 0.000000000 \\ 1 & 4.102824161 \\ 2 & 3.988842463 \\ 3 & 3.935316697 \\ 4 & 3.930965343 \\ 5 & 3.930944175 \end{array} \right)$$
I am sure that we can build a better starting point. Using for axample $x_0=\frac{\log(b)}{\log(a_n)}$, Newton iterates would be almost the same $$\left( \begin{array}{cc} k & x_k \\ 0 & 4.102850256 \\ 1 & 3.988866252 \\ 2 & 3.935320622 \\ 3 & 3.930965381 \\ 4 & 3.930944175 \end{array} \right)$$