This may be a stupid question, so I apologize in advance if it is. This is a very common example of Chebyshev Economization, but I still do not understand how the coefficients are found. I want to approximate $\exp(x)$ over the interval $[-1, 1]$.
$$\exp(x)=1+x+\frac{x^2}{2!}+\frac{x^3}{3!}+\cdots$$
I will define
$$P_5(x)=1+x+\frac{x^2}{2!}+\frac{x^3}{3!}+\frac{x^4}{4!}+\frac{x^5}{5!}\approx \exp(x)$$
How do I get the coefficients? I have read some online papers explaining this, but I do not understand it still. Often it seems some people use a different method then others because the steps are so different!

If you're interested in the Chebyshev series of $\exp(x)$ on $[-1,1]$, the first few terms, according to Maple, are $$1.26606587775200818\,T \left( 0,x \right) + 1.13031820798497007\,T \left( 1,x \right) + 0.271495339534076507\,T \left( 2,x \right) + 0.0443368498486638174\,T \left( 3,x \right) + 0.00547424044209370542 \,T \left( 4,x \right) + 0.000542926311914030628\,T \left( 5,x \right) + 0.0000449773229543007058\,T \left( 6,x \right) + 0.00000319843646242419376\,T \left( 7,x \right) + 0.000000199212480641916156\,T \left( 8,x \right) + 0.0000000110367716525872165\,T \left( 9,x \right) + 0.000000000550589632227637161\,T \left( 10,x \right)$$ where $T(n,x)$ is the $n$'th Chebyshev polynomial of $x$.
These coefficients can be found by integration: the coefficient of $T(n,x)$ is $$\dfrac{2}{\pi} \int_{-1}^1 \exp(x) T(n,x) (1-x^2)^{-1/2}\ dx $$ (except in the case $n=0$, where the $2/\pi$ is replaced by $1/\pi$).