3

I am currently trying to find a closed form formula for this series:

$$\sum_{k=0}^\infty \frac{a^{nk}b^{mk}}{(nk)!(mk)!}$$

with $a,b \in \mathbb{R}^*_+$, $n,m \in \mathbb{N}^*$, $\gcd(n,m) = 1$. (Don't know if this info is relevant)

I tried to find first the closed form formula for the easier series:

$$\sum_{k=0}^\infty \frac{a^{nk}}{(nk)!}$$

And intuitively by generalizing: $\frac{e^x+e^{-x}}{2} = \sum_{k=0}^\infty \frac{x^{2k}}{(2k)!}$ I found: $\frac{1}{n}\sum_{k=0}^{n-1} e^{\omega^k x} = \sum_{k=0}^\infty \frac{x^{nk}}{(nk)!}$, with $\omega = e^{2i\pi/n}$.

Wondering if with all of this information it is possible to find a closed form formula for the first series.

metamorphy
  • 39,111

1 Answers1

1

As @Tyma Gaidash wrote in the comment we can express with FoxH special function.

$$ \sum_{k=0}^{\infty} \frac{a^{nk} b^{mk}}{(nk)!(mk)!} = H_{1,3}^{1,1}\bigg(-a^n b^m\bigg|{(0,1) \atop (0,1),(0,m),(0,n)}\bigg) $$

Mathematica code:

Inactivate[ Sum[(a^(n k)*b^(m k))/(((n k)!)*((m k)!)), {k, 0, Infinity}] == FoxH[{{{0, 1}}, {}}, {{{0, 1}}, {{0, m}, {0, n}}}, -a^n b^m], Sum]