Which number in the set has the largest number of divisors?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
We know from the Fundamental Theorem of Arithmetic that any composite number can be constructed from a unique key of primes. The amount of ways these primes can be combined in gives the amount of divisors for the number they generate. Let's explore some initial keys:
I didn't find a general pattern for finding the combination of primes that gives the largest amount of divisors so I just narrowed down the possibilities by altering the initial 2 1 0 expression and counting the combinations:
At this point new primes cannot be added without removing all instances of any other prime already present in the key. This guarantees both that this is the key that gives the most divisors and that it is also the largest integer in the set.
The correct answer is then 1680.