I summarize what I saw in part of this post as assertion:
\begin{aligned} |ab| > 1+\frac{3}{2}\pi, |a|<1 \Rightarrow \sum\limits_{0}^{\infty}(ab)^n \pi\sin(b^n\pi x) \ \text{diverges} \end{aligned}
Although I think we have to add $x \neq 0$ condition.
Referenced post remind $\sum\limits_{0}^{\infty}|r|^n$ and compares above series with it:
The trigonometric functions complicate it somewhat, making us need $|ab|$ to be greater than $1+\frac{3}{2}\pi$, but the basic idea survives.
So I tried somethings for proving that assertioin:
- I did the ratio test but could not calculate this limit: $$\lim\limits_{n \to \infty} ab\frac{\sin(b^{n+1}\pi x)}{\sin(b^{n}\pi x)}$$
- Also no success in showing $\lim\limits_{n \to \infty} (ab)^{n}{\sin(b^{n}\pi x)} \neq 0$ to use nth-term test.
- and so on no success on other tries for proving.
- I tried a sample with GNU Octave too to get an idea:
a=2/3;
b=9;
x=linspace (0,2/b,1000);
data = [];
for n =1:100
y=(a*b)^(n+1) *sin(b^(n+1)*pi*x) - (a*b)^(n)*sin(b^(n)*pi*x);
data = [data; n min(y) max(y)];
endfor
Below charts show min(y) and max(y) for different values of n:
Although above charts show that growth speed is very rapid (like exponential functions); but again I could not find a way to prove it.
Now
- I want to know is there a simple prove for above assertion?
- Also I want to know are $|ab| > 1+\frac{3}{2}\pi, |a|<1$ conditions necessary for series to be divergence? Or those are sufficient?

