0

The primorial function $n\#$ is defined as the product of all primes less than or equal to $n$.

If $p_i$ is the $i$th prime, I define a function $P(n)$ such that $P(n) = p_n\#$. E.g., $P(1) =2, P(2)=6, P(3) = 30$, and so on. NOTE: this is NOT the primorial function. $4\# = 3\# = 6$, while $P(3) = 30\neq P(2)= 6$. This is not to be confused with $p_4\#= 7\# = 2\cdot 3\cdot 5\cdot 7 = 2130$

My questions are:

  1. Does $P(n)$ have a known name?
  2. Is some kind of analytic continuation known for $P(n)$, a la the Gamma function for factorials? My intuition says such an analytic continuation would require the use of the Riemann Zeta function, but I don’t know

EDIT: This proposed duplicate seemed promising, but it at least appears to be an estimation. It’s possible I did my math wrong here, but:

$$ \begin{eqnarray} \log(P(2)) = \log(6) =\sum_{k=1}^2 \log p_n &=& \int_2^3 \log k\; d\pi(k)\\ \log(k)\pi(k)\biggr|_{2}^{3}-\int_{2}^{3}\frac1k \pi(k)dk.\\ =2\log(3)-\log(2)-\lim_{c->3}\int_{2}^{c}\frac1k \pi(k)dk \\ = 2\log(3)-\log(2)-\lim_{c->3}\int_{2}^{c}\frac1kdk =\log(3) \neq \log(6) \end{eqnarray} $$

jjagmath
  • 18,214

1 Answers1

1

We have $$P(n) = \prod_{k=1}^n p_k = \prod_{p\le p_n} p$$ so $$\log P(n) = \sum_{p \le p_n}\log p = \theta(p_n)$$ where $\theta$ is the Chebyshev function.

If you are interested in this function you may use the asymptotic expansions known about $\theta(x)$ and $p_n$.

jjagmath
  • 18,214