Compute the Euler's phi function of a large integer.
For more information about this topic please visit: Euler's totient function.
With these constraints:
- n is a nonnegative integer greater than 0.
- "large integer" means 32bit integer
- vectorized Input
Examples:
- eulerphi(4) = 2
- eulerphi(11) = 10
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers102
Suggested Problems
-
Find the alphabetic word product
3473 Solvers
-
Find the peak 3n+1 sequence value
2571 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
2061 Solvers
-
Find the largest value in the 3D matrix
1686 Solvers
-
Construct an index vector from two input vectors in vectorized fashion
461 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I'm pretty sure eulerphi(1) is 1. Mind checking that please! I'm just going off the table given through your link there.
It is corrected. Thanks for your help!