Define a recursion that gives the number of sequences that include the numbers $0,1$ that does not contain the sequence $0011$.
The way I thought about it is to start with a all possible beginnings and complete the the beginning to a complete sequence: For example let $a(n)$ be the number of sequences of length $n$, then $a(n+1) =$ possible beginning $1 + a(n) +$ possible beginning $01 + a(n-2) + \ldots$
This method worked on different sequences than $1100$. What I don't understand is why it's not working here.
Thank you.