Problem 56418. Easy Sequences 78: Trailing Zeros of Factorial Numbers at any Base
Given an integer n and a number base b, write a function that calculates the number of trailing zeros of the factorial of n when written in base-b.
For example, for
and
, the function should return 5, because:
>> dec2base(factorial(15),4)
>> '103001313131311200000'
For
and
, the function should return 4.
>> dec2base(factorial(10),12)
>> '1270000'
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers3
Suggested Problems
-
Remove all the words that end with "ain"
2594 Solvers
-
Find the sum of the elements in the "second" diagonal
1183 Solvers
-
Back to basics 9 - Indexed References
455 Solvers
-
middleAsColumn: Return all but first and last element as a column vector
637 Solvers
-
convert matrix to single column
428 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!