The least positive integer with exactly distinct positive divisors can be written in the form , where and are integers and is not a divisor of . What is
- A)
- B)
- C)
- D)
- E)
Answer
B
Key insight
2021 = 43 * 47, so the exponents are 46 and 42; put the bigger exponent on the smaller prime to get 2^46 * 3^42 = 16 * 6^42.
Solution
If , the number of divisors is . We need this product to equal .
Since has only the factorizations and , either or for distinct primes . To make as small as possible, use the smallest primes and give the larger exponent to the smaller prime: the candidates are and . The second is far smaller (it is less than ).
Now write in the required form:
Here is not divisible by and , so .
The answer is .
Why this works
The divisor-count function depends only on the exponents, so "least integer with divisors" is a two-step optimization: factor to determine the possible exponent patterns, then assign larger exponents to smaller primes. Splitting into more factors almost always beats a single huge exponent.
The trap
Using 2^2020 (a single prime) as the smallest number with 2021 divisors, or writing the answer as 2^4 * 6^42 but then reporting m = 4 or m = 2.
Common mistakes
- Using 2^2020 (a single prime) as the smallest number with 2021 divisors, or writing the answer as 2^4 * 6^42 but then reporting m = 4 or m = 2.
- Assigning exponents the wrong way around, , which is larger.
Techniques
Set up the equation/formula and compute; no special trick needed · Consider the largest/smallest element or boundary case