0

Find a linear constant coefficient for the recurrence relation $a(n)$ where $a(n)$ is the number of subsets of $\{1,2,3,\dots,n\}$ not containing three consecutive numbers.

So $a(n)$ must have a recurrence relation where it can be traced that the the two numbers are not greater or higher than the first?

Tom
  • 29
  • This is a duplicate of http://math.stackexchange.com/questions/86249/number-of-subsets-of-1-2-ldots-n-containing-no-three-consecutive-intege?rq=1 , although that question wasn't answered so I recommend leaving this one open. – Michael Lugo May 11 '15 at 13:14

1 Answers1

2

Let $A(n)$ be the number that don't include $n$.
Let $B(n)$ be the number that include $n$ but not $n-1$.
Let $C(n)$ be the number that include $n$ and $n-1$.
Find recursions for all three.

Empy2
  • 50,853