Given an integer n, the primorial of n,
, is defined as product of all primes from 2 to the n-th prime. In other words, if
is the n-th prime number:
.
For this problem, we want to calculate the hyperprimorial of n, which we will define as:
.
For example:
From what we see above, calculating hyperprimorial will quickly involve extremely large integers, as such, please return only the last 6 digits of
. Therefore, in the example above the final output should be:
and
.
-----------------------------
NOTE: OEIS's "hyperprimorial" sequence, #A076265, is not the same as what is defined in this problem.
Solution Stats
Solution Comments
Show comments
Loading...
Problem Recent Solvers2
Suggested Problems
-
Project Euler: Problem 2, Sum of even Fibonacci
2887 Solvers
-
Recurring Cycle Length (Inspired by Project Euler Problem 26)
164 Solvers
-
Find perfect placement of non-rotating dominoes (easier)
387 Solvers
-
99 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2206 Solvers
More from this Author116
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!