Problem 57412. Easy Sequences 85: Hyperprimorials
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 commentsProblem Recent Solvers1
Suggested Problems
-
7199 Solvers
-
Flip the main diagonal of a matrix
897 Solvers
-
Number of 1s in a binary string
10884 Solvers
-
Get the elements of diagonal and antidiagonal for any m-by-n matrix
508 Solvers
-
Convert to Binary Coded Decimal
146 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!