For this case, a number is defined ugly if it has prime factors consisting of only elements of x. Find the nth ugly number.
- x=[2,3,5] and n=10.
- So the list is like -- 2,3,4,5,6,8,9,10,12,15...
so the ans is 15.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers25
Suggested Problems
-
Project Euler: Problem 3, Largest prime factor
1819 Solvers
-
Getting the indices from a vector
12297 Solvers
-
Matrix rotation as per given angle
120 Solvers
-
Return fibonacci sequence do not use loop and condition
871 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2216 Solvers
More from this Author174
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Unlike the previous two "ugly()" problems, in this one it appears that the number "1" is not considered ugly.