Let's have a look at this supposedly simple relation: $$ \begin{cases} f(n)=2\cdot f(n-1)+n \\ f(1)=1 \end{cases} $$
After a few expansions, for $n=5$, we get
$$ \begin{align} f(5)&=2(2(2(2f(1)+2)+3)+4)+5) \\ &=2^4f(1)+\sum_{i=0}^{3}{2^i\cdot (5-i)} \end{align} $$
So, we can generalize to $$ f(n)=2^{n-1}+\sum_{i=0}^{n-2}{2^i\cdot (n-i)} $$
After that, I still couldn't arrive at the final solution, without any sum terms.
So, using only elementary tools (i.e without generating functions, etc.), how can one solve this relation?