In number theory, a smooth number is an integer which factors completely into small prime numbers. Multiples of {2,3,5} are known as 5-smooth, regular, or Hamming numbers. A positive integer is called *k*-smooth if none of its prime factors is greater than *k*.
1
vote
2answers
329 views
Haskell Hamming numbers, works but shows duplicates
I am trying to generate hamming numbers in haskell, the problem is I get duplicate #'s in my output list and I cannot figure out why exactly. Should I just create a remove duplicates function or am I ...
6
votes
4answers
681 views
Generating integers in ascending order using a set of prime numbers
I have a set of prime numbers and I have to generate integers using only those prime factors in increasing order.
For example, if the set is p = {2, 5} then my integers should be 1, 2, 4, 5, 8, 10, ...
4
votes
6answers
341 views
Find the smallest regular number that is not less than N
Regular numbers are numbers that evenly divide powers of 60. As an example, 602 = 3600 = 48 × 75, so both 48 and 75 are divisors of a power of 60. Thus, they are also regular numbers.
This is an ...
16
votes
9answers
800 views
Printing numbers of the form 2^i * 5^j in increasing order
How do you print numbers of form 2^i * 5^j in increasing order.
For eg:
1, 2, 4, 5, 8, 10, 16, 20
95
votes
14answers
9k views
Tricky Google interview question
A friend of mine is interviewing for a job. One of the interview questions got me thinking, just wanted some feedback.
There are 2 non-negative integers: i and j. Given the following equation, find ...