Define $\{a_n\}$ (a sequence of real numbers) as satisfying the H(m) condition if, for all integers $n$, the following recurrence relation holds:
$$ a_{n-m} + a_{n-m+1} + \dots + a_{n+m} = a_n \cdot (2m + 1) $$
In other words, the average of the $2m + 1$ consecutive terms from $a_{n-m}$ to $a_{n+m}$ is $a_n$.
The task is to prove the following conjecture: If a sequence satisfies both the H(p) and the H(q) condition for integers $p$ and $q$ $(p \neq q, p>1,q > 1)$, then the sequence ${a_n}$ must be an arithmetic progression. In other words, it satisfies H(1) condition.
What I’ve Tried:
I’ve explored using a method similar to the Euclidean algorithm to compute small cases for specific values of $p$ and $q$.
Then I suspect that this problem could be transformed into one involving the roots of the characteristic equation associated with the recurrence relations, where the only common root between the equations is 1. This related to a question left unsolved here.
I've also tried: $$ x^{n-m} + x^{n-m+1} + \dots + x^{n+m} = x^n \cdot (2m + 1) $$ $$ \frac {x^{m+1} - x^{-m}}{x-1} = 2m + 1 $$ let $x = e^{2i\omega}$, ($x \in \mathbb{C}$, so $\omega \in \mathbb{C}$) $$\implies \frac {e^{(2m+2)i\omega} - e^{(-2m)i\omega}}{e^{2i\omega}-1} = 2m + 1 $$ $$\implies \frac {e^{(2m+1)i\omega} - e^{-(2m+1)i\omega}}{e^{i\omega}-e^{-i\omega}} = 2m + 1 $$ $$\implies \sin((2m+1)\omega) = (2m+1)\sin\omega $$
Any guidance would be greatly appreciated!
As for Approach 2, I’ve been exploring it, but since $omega$ is a complex number, I’m finding it tricky to handle
– Reiss Oct 14 '24 at 14:51