I was given the next question: I need to find the recurrence relation, $An$ , for the number of the finite strictly decreasing sequences which consist numbers that are smaller than $n$ or equal to $n$ and also the difference between two successive numbers is at least 2.
For exmaple, if n=3 the sequences are: (3,0) ,(3,1), (2,0) , (0), (1), (2), (3) therefore $A3$ equals to 7
I'm trying to figure out what's wrong with my solution. I suggested that the problem is similar to the problem of finding how many $n$ long binary strings are there such that between each $'1'$ there is at least one $'0'$ but the answer doesn't seem to be right...