How can we solve the sum
$$\sum_{k=0}^{\lfloor{n/2}\rfloor} \binom{n-k}{k} 2^{n-k}$$
The problem arose from a counting question, but I am unable to solve this sum.
Edit:
The counting problem was similar to what @Phicar has written, ie, I looked up and the question is equivalent to fibonacci tiling in two colours.
Hint: This sum reminds me of Fibonacci but coloring with $2$ colors. so, basically we should be able to show that if your sequence is defined as $A_n$ then $$A_n=2(A_{n-1}+A_{n-2}).$$ If this is the case, then we are basically watching at the polynomial $$x^2=2x+2,$$ with roots $1\pm \sqrt{3}.$ and so your sequence will have as an answer $$A_n = \frac{(1+\sqrt{3})^{n+1}-(1-\sqrt{3})^{n+1}}{(1+\sqrt{3})-(1-\sqrt{3})}$$