I somehow stumbled across this thing. $$\lim_{n \to \infty}({p_1\times p_2\times p_3\times\cdots \times p_n})^{\frac{1}{p_n}}$$ Where $p_i$ is the $i$-th prime.
I wanted to know if this converges or not. So I wrote a python program, and computed it up to $n = 300000$ and got this:
$2.7168952344276653$ , with $p_n = 4256249$
It seems to approach $e$, but that doesn't make sense, $e$ doesn't have anything to do with prime numbers.
It was converging extremely slowly, and the program was also very slow, so I wasn't able to compute it for higher values of $n$.
I want to know what this limit approach?
Let $x$ a real number. We have, by the Abel's summation formula,
$$\sum_{p\le x}\log p = \pi(x)\log x-\int_2^x\frac{\pi(t)}{t}\,dt$$
By the Prime Number Theorem, $\pi(x)\log x \sim x$ and $\displaystyle\frac{\pi(t)}{t} =O\left(\frac{1}{\log t}\right)$ which means that $\displaystyle\int_2^x\frac{\pi(t)}{t}\,dt = O\left(\int_2^x \frac{1}{\log t}\,dt\right) = O\left(\frac{x}{\log x}\right)$
This means that $$\frac{1}{x}\sum_{p\le x}\log p =1+o(1)$$
Taking exponentials we see that the limit you're approximating is $e$.