any hints on how to solve the recurrence relations for the following binomial coefficient
\begin{equation} {n \choose k}=\begin{cases} 1, & \text{if $k\in\{0,n\}$}.\\ {n-1 \choose k-1}+{n-1 \choose k}, & \text{otherwise}. \end{cases} \end{equation} for $ 0\ge k \le n $