I am interested in finding a function $\delta(n)$ that solves a functional equation of the form—$$\delta(n) = \delta(2n) + \kappa(n),$$for all integers $n \ge 1$ that are powers of 2, where $\kappa(n)$ is a known function that depends on $n$. This equation came up when seeking answers to a question of mine about converging polynomials. For example (Nacu and Peres 2005, proposition 10):
- If $\kappa(n) = \dfrac C {\sqrt{2n}}$, then $\delta(n) = \dfrac{(1+\sqrt{2})C}{\sqrt{n}}$, where $C > 0$.
- If $\kappa(n) = \dfrac M {4n}$, then $\delta(n) = \dfrac M {2n}$, where $M > 0$.
Unfortunately, I don't know how to solve this functional equation for $\delta(n)$ when $\kappa(n)$ is arbitrary. An example is $\kappa(2^m) = \dfrac M 2 \cdot \dfrac 1 {8\cdot2^m-4}$, which is not a hypergeometric function as rsolve requires. How can I do that?
REFERENCES:
- Nacu, Şerban, and Yuval Peres. "Fast simulation of new coins from old", The Annals of Applied Probability 15, no. 1A (2005): 93-115.
If $\kappa(2^m)$ is a sum of hypergeometric functions, the functional equation in my question has to be converted to a linear recurrence of the form—$$\eta(m) = \eta(m+1) + \kappa(2^m), $$ and the solutions found correspond to those in the original functional equation.
Here is an example in SymPy:
EDIT:
As I found out, this works only if $\kappa(2^m)$ is a sum of hypergeometric functions, not necessarily for more general functions. Thus, my question remains open.
EDIT (Apr. 2):
In the meantime, I have managed to settle this question.
For the equation $\delta(n) = \delta(2n) + \kappa(n)$, it's enough to sum $\delta(n) = \kappa(n) + \kappa(2n) + \kappa(4n) + ...$ to get the solution. For this solution, it doesn't matter what the initial $c_1$ is; all that matters is whether the sum converges. I can assume that the sum does converge, and in that case, that sum is the solution I need.