\[\begin{eqnarray*} h(n) =&\ \class{timed in4}{3h(n-2)}\ \class{timed in4}{+} & \class{timed in4}{2h(n-4)+2h(n-6)+2h(n-8)+ \cdots + 2h(4)+2h(2)+2} \\ h(n-2)=&\ & \class{timed in1}{3h(n-4)+2h(n-6)+2h(n-8)+ \cdots + 2h(4)+2h(2)+2} \end{eqnarray*}\]
Subtracting the second equation from the first, we obtain
\[\begin{eqnarray*} h(n) - h(n-2) & = &3h(n-2) - h(n-4) \\ \class{timed in5}{h(n)} &\class{timed in5}{=} &\class{timed in5}{4h(n-2) - h(n-4)} \end{eqnarray*}\]
Therefore, the answer to Problem 5 is
\[h(n) = \begin{cases} 0 & \text{when }n\text{ is odd}\\ 3 & \text{when }n=2\\ 11 & \text{when }n=4\\ 4h(n-2)-h(n-4) &\text{when }n\text{ even and }n \geq 6 \end{cases}\]