Let: $a_n = a_{n-1}+2a_{n-2} +3\cdot 2^n$, $\displaystyle b_n=4\sum_{k=0}^nk\binom n k$
Show that $b_n$ solves $a_n$
There are no starting conditions for the recurrence, that is how the question was given.
I don't understand, how can it be done? I can't solve the recurrence since there are no starting conditions, I can find a generating function for $b_n$ but I don't see how that will help.
Simply plug in the quantity $b_n$ in for $a_n$.
We wish to show the following:
$$b_n = b_{n-1} + 2b_{n-2} +3 \times 2^n$$
This will be sufficient to prove the recurrence stated.
The reason initial conditions don't matter is because you are trying to show that the $b_n$ described are A SOLUTION for the recurrence given, not a unique solution.
A hint to go about this is to rewrite $b_n$ in a more compact format. Notice that the formula for $b_n$ gives the number of ways to pick a subset of $n$ elements and picking a special element of that subset, multiplied by $4$. This is the same as picking a special element initially and deciding whether or not each of the remaining $n-1$ elements should be in your subset, multiplied by 4.
Notice therefore that we have $b_n = 4 (n2^{n-1}) = n 2^{n+1}$. From there simple algebra should get you your recurrence.
Another way to show that $b_n$ satisfies the recurrence is to find a combinatorial meaning of $b_n$ and show it implies the given recurrence for $b_n$.