I will walk you through the process for finding the closed form for the given recursion, or difference equation:
$$a_{n+1}=a_{n}+\left(\frac{1}{2}\right)^{n+1}$$ where $a_0=1$.
The associated homogeneous equation is:
$$a_{n+1}-a_{n}=0$$
Now, we see the characteristic equation is:
$$r-1=0\implies r=1$$
Thus we know the homogeneous solution is given by:
$$h_n=c_1\cdot1^n=c_1$$
Inspection of the original equation tells us the particular solution must have the form:
$$p_n=A\left(\frac{1}{2}\right)^n$$
We can now use the method of undetermined coefficnets to find $A$. Substituting this solution into the original equation, we obtain (after rearranging a bit):
$$p_{n+1}-p_{n}=\left(\frac{1}{2}\right)^{n+1}$$
Now, using the form of $p_n$, we get:
$$A\left(\frac{1}{2}\right)^{n+1}-A\left(\frac{1}{2}\right)^n=\left(\frac{1}{2}\right)^{n+1}$$
Multiplying though by $2^{n+1}\ne0$, there results:
$$A-2A=1\implies A=-1$$
And so, using the principle of superposition, we obtain the general solution:
$$a_n=h_n+p_n=c_1-\frac{1}{2^n}$$
Now, all that's left to do is find the parameter $c_1$ using the given initial value:
$$a_0=c_1-\frac{1}{2^0}=1\implies c_1=2$$
Hence, the closed form can be written as:
$$a_n=2-2^{-n}$$
So, can you now write $a_5$ as a function of $\dfrac{1}{2}a_4$?