Is there a closed form of the above equation or something that simplifies it? Here is the same equation copied:
$$\sum_{k=0}^{n} (-1)^{n-k}\binom{n}{k}2^k k^m$$
It looks very similar to the Stirling number of the 2nd kind but slightly modified, which looks like this:
$$S(m,n)=\frac{1}{n!}\sum_{k=0}^{n} (-1)^{n-k}\binom{n}{k} k^m$$
For each fixed $m$ this sum is hypergeometric, and so computers can solve for a closed form (or tell us that none exists). You can read more in the excellent book $A=B$, which the authors have made freely available at that link.
Now we can start solving these for fixed values of $m$ (by asking sage, say) and we get
$$ \begin{array}{|c|l|} \hline m & S(m) \\ \hline 1 & 2 \, n\\ \hline 2 & 4 \, n^{2} - 2 \, n\\ \hline 3 & 8 \, n^{3} - 12 \, n^{2} + 6 \, n\\ \hline 4 & 16 \, n^{4} - 48 \, n^{3} + 60 \, n^{2} - 26 \, n\\ \hline 5 & 32 \, n^{5} - 160 \, n^{4} + 360 \, n^{3} - 380 \, n^{2} + 150 \, n\\ \hline \vdots & \vdots \\ \hline \end{array} $$
It's not hard to see that $S(m) = (2n)^m + O(n^{m-1})$, and the OEIS lets us push this slightly further. Indeed, the sequence of second order terms, $2,12,48,160,\ldots$ seems to be A001815, which tells us that (probably -- I haven't tried to prove this)
$$S(m) = 2^m n^m - 2^{m-2} m (m-1) n^{m-1} + O(n^{m-2})$$
You can also look at the sequence of linear terms $2,-2,6,-26,150,\ldots$, which is (up to sign) A076726. Unfortunately this doesn't seem to have a nice closed form in terms of $m$. You can probably push this farther with some effort, but naively neither the sequence of third terms $6,60,360,1680,6720\ldots$ or the sequence of quadratic terms $4,-12,60,-380,2940,\ldots$ is in the OEIS. Because of this (and the lack of closed form for the linear terms), my guess is that getting a closed form parameterized by $m$ is going to be quite hard, if it's possible at all. Thankfully, for lots of purposes being able to get a closed form for each fixed $m$ is good enough!
I hope this helps ^_^