AMnu's blog

By AMnu, 8 years ago, In English

What is the largest number less than 2^64 which has exactly 90 positive divisors ?

  • Vote: I like it
  • +13
  • Vote: I do not like it

»
8 years ago, hide # |
 
Vote: I like it +22 Vote: I do not like it

You can find the divisors of 90. Subtract 1 from each of them. And try to assign those divisors-1 as powers to some primes so that the multiplication of assigned divisors = 90. Take an assignment, and find the number as prime1^(divisor1-1) * prime2^(divisor2-1) * ... Take the maximum of those numbers which are less than 2^64.

Good luck!