I've been looking everywhere for this. I've found a billion ways to approximate e^x, and ln(x), and I know I could combine those, what I'm looking for here is an independent numerical method to calculate $2^x$ with $0.0 < x < 1.0$. there is one here but it appears to be using an auto generated polynomial coefficients for numerical approximation, and doesn't really go into detail of how they were chosen.
I figured there would be some series approximation or a analytically derived polynomial expansion, but it seems like that isn't the case (though in that event I'd like to know why, or at least why e^x does and 2^x doesn't).
When I say independent, I mean that the method isn't for say, $e^x$, and then uses some transformation to get to $2^x$. Here's what I don't want, some derivation that comes down to $exp(x * ln(2))$. Constant log terms like $ln(2)$ are fine, and if it some how helped, an $e^c$ constant would be fine as well. It just can't rely on needing an numerical approximation for $ln(x)$ or $e^x$ or $log_{10}$ etc...
Note that $$2^x=e^{\ln(2)x}$$ you can approximate like before (using taylor series or linear approximation etc). $$1+x\ln(2)+\frac{(x\ln(2))^2}{2}...$$