I'm trying to solve the following simple problem:
How many sequences made of {0,1} and with length of n, exists such that the sub-sequence 110 does not appear?
Well, at first glance it looked to me as a simple recursion problem. So I ended up with the following formula:
$ a_n=a_{n-1}+a_{n-2}+1 $
Which seems quite right to me. But I think it is not sufficient, I need to provide an actual formula, and not a recursion.
This formula is really similiar to the Fibonacci sequence, but how can I solve it? I am pretty disturbed by the 1 at the end, which does not let me solve it like a normal recursion.
Any suggestions? maybe it is possible without a recursion?
Thanks in advance!

To solve the recursion, just put $b_n=a_n+1$. Then $b_n=b_{n-1}+b_{n-2}$, which you know how to solve.