If $26$ is changed to any number, inspection would just give bounds for the solution and you would need numerical methods.
Consider that you look for the zero of function
$$f(x)=5^x-4^x-3^x-2^x-k$$ which is not very nice (just plot it). At the opposite
$$g(x)=x \log(5)-\log(4^x+3^x+2^x+k)$$ is close to the problem of the intersection of two straight lines.
Make a Taylor expansion around $x=1$ to make
$$g(x)=(\log (5)-\log (k+9))+$$ $$\frac{ (k \log (5)+9 \log (5)-4 \log (4)-3 \log (3)-2
\log (2))}{k+9}(x-1)+O\left((x-1)^2\right)$$ and solve for $x$.
$$x=\frac{(k+9) \log (k+9)-4 \log (4)-3 \log (3)-2 \log (2)}{(k+9) \log (5)-4 \log (4)-3 \log (3)-2 \log (2)}$$
For $k=26$, this gives $x \sim 2.477$. Notice that this is exactly the first iteration of Newton method.
Doing the same with Halley's method, the estimate would be $2.735$ and with Householder method $2.926$.
Edit
As @Oscar Lanzi answered, we must have $5^x > k$. So, let
$$x_0=\frac{\log (k)}{\log (5)}$$ and make a Taylor expansion of first order around this point (or, equivalently, one single iteration of Newton method). This would give as a better estimate
$$x_1={x_0}-\frac{{x_0} \log (5)-\log \left(2^{x_0}+3^{x_0}+4^{x_0}+k\right)}{\log (5)-\frac{2^{x_0} \log (2)+3^{x_0}
\log (3)+4^{x_0} \log (4)}{2^{x_0}+3^{x_0}+4^{x_0}+k}}$$ Trying for $k=10^p$, the results would be
$$\left(
\begin{array}{cccc}
p & x_0 & x_1 & \text{exact} \\
1 & 1.43068 & 2.42347 & 2.72473 \\
2 & 2.86135 & 3.44185 & 3.52993 \\
3 & 4.29203 & 4.64758 & 4.67284 \\
4 & 5.72271 & 5.95128 & 5.95909 \\
5 & 7.15338 & 7.30590 & 7.30849 \\
6 & 8.58406 & 8.68855 & 8.68944 \\
7 & 10.0147 & 10.0876 & 10.0880 \\
8 & 11.4454 & 11.4969 & 11.4970 \\
9 & 12.8761 & 12.9128 & 12.9128 \\
10 & 14.3068 & 14.3331 & 14.3331
\end{array}
\right)$$