5
$\begingroup$

Introduction

I was so fascinated the first time I saw Eulers Number $e$ as the sum of the infinite series over $\frac{1}{n!}$ that I began playing on variants of it, learning a lot on the way.

However when I started playing around with primes things became tricky, I found: $$\sum_{n=1}^{\infty} \frac{p_n}{n!}=\frac{2}{1!}+\frac{3}{2!}+\frac{5}{3!}+\dots = 4.73863870268..$$

It intrigued me when I noticed that it appeared to converge as I know about the divergence of the sums of reciprocal primes. I couldn't find this in any literature and couldn't find a closed form.

I have ran simulations and computed this for fun to hundreds of decimal places however I have ploted a graph for $\frac{p_{n+1}}{(n+1)!} - \frac{p_n}{n!}$, $n$ ranging from $1$ to $9$

Plot enter image description here

I have checked with a program if every next difference is smaller than the previous and this holds up to $n=1000$ (with the idea that if this holds on forever it will eventually become $0$ thus the series will converge to a constant value)

Question #1: Does it converge?

Question #2: Is this something known (probably), and if yes, where could I read up on it?

  • 6
    To prove convergence it is enough to exploit the ridiculous bound $12017-01-28
  • 1
    By the way, although you mention that $$\sum_{n=1}^\infty \frac{1}{p_n} \to \infty,$$ the following infinite series is actually convergent: $$\sum_{n=1}^\infty\frac{(-1)^n}{p_n}\approx -0.2696063519.$$ This was proven in $1971$, and I thought that you might be interested. It is also unknown whether or not $$\sum_{n=1}^\infty \frac{n(-1)^n}{p_n}$$ is convergent or divergent.2018-02-16
  • 0
    @user477343 what was proven in 1971 ? Convergence of $\sum_{n=1}^\infty\frac{(-1)^n}{p_n}$ is trivial by the alternating series theorem.2018-04-22

1 Answers 1

6

Yes, it converges. As a hint, the prime number theorem gives us an asymptotic estimate $$p_n \sim n \log n. $$

See if you now can apply any of the convergence tests you know.

  • 0
    With what you have said, it seems that I could apply the ratio test to prove convergence in this case, however a closed form or approximation on the actual number would be impossible or very hard, am I right?2017-01-28
  • 3
    @Ilhan Instead of the prime number theorem (complicated) you can show that $\sum_n \frac{1}{p_n}$ diverges (using that [$\log \zeta(s)= -\sum_n \log(1-p_n^{-s})$](https://en.wikipedia.org/wiki/Euler_product)), which means that $\lim_{n \to \infty} \frac{p_n}{n^2} = 0$, so that $\sum_n \frac{p_n}{n!}$ converges2017-01-28
  • 2
    Or this fact http://math.stackexchange.com/questions/144539/limit-inferior-of-the-quotient-of-two-consecutive-primes/420475#420475 and ratio test.2017-01-28
  • 0
    the two suggestions are indeed easier and I can now prove the convergence thus the question is answered, out of curiosity, would it be difficult to approximate the actual number? @rtybase2017-01-28
  • 2
    Given $p_n < (1+\varepsilon)n\log{n}$, for $\forall n > N$, you can play around $$\sum_{n}\frac{p_n}{n!}<\sum_{n=1}^{N}\frac{p_n}{n!}+(1+\varepsilon)\sum_{n>N}\frac{\log{n}}{(n-1)!}$$ and reduce this further given that $$\lim_{n\rightarrow \infty} \frac{\log{n}}{n-1}=0$$2017-01-28