Problem 46054. Count trailing zeros in a primorial
Cody Problem 44068 asked us to count the trailing zeros in a factorial. This problem deals with the primorial. If
is the nth prime number, then the primorial
# is the product of the prime numbers up to and including
. For example, if n = 5, then
# =
= 2310, which has one trailing zero.
Count the trailing zeros in the primorial
#. Because primorials become large quickly, for large n it helps to derive a formula for the number of trailing zeros.*
Please make your code general because I might add more tests later.
See also Cody Problems 46057 "Find the last non-zero digit in a primorial" and 46060 "Identify primorial primes".
*;-)
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers29
Suggested Problems
-
Determine whether a vector is monotonically increasing
21255 Solvers
-
Return the largest number that is adjacent to a zero
5401 Solvers
-
Numbers with prime factors 2, 3 and 5.
572 Solvers
-
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
564 Solvers
-
800 Solvers
More from this Author291
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!