1

I found this sum while trying solving the Hermite differential equation by series.

$$x+x*(4-x)+x*(4-x)*(8-x)+..... $$

2 Answers2

3

I think this works:

$x*(1+\sum_{n=1}^\infty\prod_{k=1}^n(4k-x))$

Or maybe (apparently on a technicality)

$-\sum_{n=0}^\infty\prod_{k=0}^n(4k-x)$

John Lou
  • 2,388
  • 13
  • 16
0

This works: $$x\sum_{n=0}^{\infty}4^n\frac{\Gamma(1-\frac{x}{4}+n)}{\Gamma(1-\frac{x}{4})}$$

The fraction is effectively doing $(1 - \frac{x}{4})(2 - \frac{x}{4})\dots (n - \frac{x}{4})$, which when combined with the $4^n$ gives $4(1 - \frac{x}{4})\cdot4(2 - \frac{x}{4})\cdot\dots \cdot4(n - \frac{x}{4})$ or $(4 - x)(8 - x)\dots (4n - x)$.

Only $x$ is missing for every term, but that can be put outside the sum. In fact, the $\Gamma(1-\frac{x}{4})$ can be put outside the sum, giving:

$$\frac{x}{\Gamma(1-\frac{x}{4})}\sum_{n=0}^{\infty}4^n\Gamma(1-\frac{x}{4}+n)$$

orlp
  • 10,508