Problem: Let $\alpha, \beta$ be non-negative numbers. Suppose the number of strictly increasing sequences $a_0, a_1, a_2 \cdots a_{2014}$ satisfying $0 \leq 3m$ is $2^{\alpha}(2\beta+1)$. Find $\alpha$.
My attempt:
I tried to find an explicit form for the $nth$ of the sequence using recursions.
Let $P_{n,k}$ be the number of sequences of length $n$ that end in $k$, i.e, $a_n=k$.
Then it's easy to say that the following recursions hold:
$P_{n+1, n+1}=P_{n, n}$
$P_{n+1, n+2}=P_{n, n}+P_{n, n+1}$
$P_{n+1, n+3}=P_{n, n}+P_{n, n+1}+P_{n, n+2}$
And so on.. and the last equation is,
$P_{n+1, 3n+3}=P_{n, n}+P_{n, n+1}+P_{n, n+2}+\cdots + P_{n, 3n}$
And of course, we want $P_{n+1, n+1}+ P_{n+1, n+2}+P_{n+1, n+3}+ \cdots + P_{n+1, 3n+3}$
But i can't make any more progress. So, any help will be appreciated.
If $P_{n,k}$ is the amount of sequences of $a_0,\ldots, a_n$ such that $a_n = k$ and for any $m$ we have $0\leq a_m \leq 3m$ then:
$$P_{n,k} = \begin{cases} 0 &\text{if } k < n\\ 1 & \text{if } k = n\\ \displaystyle\sum_{i=0}^{k-n} P_{n-1,n-1+i} & \text{if } n < k \leq 3n\\ 0 & \text{if } k > 3n \end{cases}$$
The amount of sequences of $2015$ elements such that for every element we have $0\leq a_m \leq 3m$ is exactly the amount of sequences of $2016$ elements with the same condition as before and $a_{2015} = 3\cdot 2014 + 1$, i.e. $P_{2015, 6053}$
One can work out that:
$$P_{n,n} = 1$$
$$P_{n,n+1} = \sum_{k=0}^n P_{k,k}$$
$$P_{n,n+2} = \sum_{k=0}^n P_{k,k} + \sum_{k=1}^nP_{k,k+1}$$
$$P_{n,n+3} = \sum_{k=0}^n P_{k,k} + \sum_{k=1}^nP_{k,k+1} + \sum_{k=2}^n P_{k,k+2}$$
$$P_{n,n+4} = \sum_{k=0}^n P_{k,k} + \sum_{k=1}^nP_{k,k+1} + \sum_{k=1}^n P_{k,k+2} + \sum_{k=2}^n P_{k,k+3}$$ $$\cdots$$
$$P_{n,n+m} = \sum_{t=0}^{m-1}\left(\sum_{k=\lceil t/2\rceil}^n P_{k,k+t} \right) $$