Given a sequence: $$ \begin{cases} x_{n+2} = x_{n+1} + \frac{x_n}{2^n}\\ x_1 = 1\\ x_2 = 1 \\ n \in \mathbb N \end{cases} $$ Show that $\{x_n\}$ is a bounded sequence.
This recurrence feels like a bad joke for precalculus level. Is it possible to show that it is bounded and find some estimations for the bounds. Clearly $x_n$ is greater than $0$. ${1\over 2^n}$ coefficient makes it hard to find closed form of the recurrence.
I've expanded a few first terms to find a pattern but it doesn't look like it exists:
$$ x_n = {1}, {1}, {3\over 2}, {7\over 4}, {31\over 16}, {131\over 64}, {1079\over 512}, {8763\over 4096}, \ {141287\over 65536}, {2269355\over 1048576} \dots $$
Denominator is in some form of $2^{k_n}$ from which i've figured out $k_n$ is in the form:
$$ k_n = \left\lfloor {n^2\over 4}\right\rfloor $$
So the denominator is in the form:
$$ d_n = 2^{\left\lfloor {n^2\over 4} \right\rfloor} $$
The sequence seems to be bounded since computing a few terms shows it tends to some number:
$$ M = 2.1726687\dots $$
I have these questions in mind regarding the given sequence:
- What is the kind of the sequence to understand how to search for its kind on the internet (linear/non-linear, homogenous/non-homogenous, ...)
- How do i show that it is bounded using precalculus maths only?
- Is it possible to find its closed form?
Please note this problem is in precalculus even before limits are defined.
It is clear that $\forall n\geq 1, x_n\geq 0$. Since $\displaystyle \forall n\geq 1, x_{n+2} = x_2+\sum_{k=1}^n \frac{x_k}{2^k}$, it suffices to prove that $\displaystyle \sum_{k}\frac{x_k}{2^k}$ converges. Because of the $2^n$ in the denominator, any crude polynomial bound on $x_n$ will do.
Let us prove by strong induction that $\forall n\geq 1, x_n\leq n$. It's trivial for $n=1,2$. Assume that for all $k\leq n-1, x_k\leq k$. For $n\geq 3$, $$x_n=1+\sum_{k=1}^{n-2} \frac{x_k}{2^k}\leq 1+\max_{i\leq n-2}x_i \sum_{k=1}^{n-2} \frac{1}{2^k} \leq 1+\max_{i\leq n-2}x_i\leq 1+n-2\leq n$$
This bound yields convergence of $\displaystyle \sum_{k}\frac{x_k}{2^k}$, which in turn implies that $x_n$ converges (hence it's bounded).
For a precalculus-friendly version, it suffices to prove that $\displaystyle \sum_{k=1}^n \frac{x_k}{2^k}$ is bounded in $n$, and by what precedes, it suffices to prove that $\displaystyle \sum_{k=1}^n \frac{k}{2^k}$ is bounded above in $n$. The elementary Bernoulli's inequality yields $k\leq 2\left( \left(1+\frac 12 \right)^k-1\right)\leq 2 \left(1+\frac 12 \right)^k$. Thus $$\sum_{k=1}^n \frac{k}{2^k}\leq 2 \left( \sum_{k=1}^n \left(\frac{3}{4}\right)^k\right)\leq 2\cdot 3\leq 6$$