AMC 10 · 2018 · #19

Grade 6 number-theory
prime-factorizationfactorsdivisibility-rules caseworkidentify-subproblems ↑ Prerequisites: prime-factorization
📏 Medium solution 💡 3 insights
Problem
An even four-digit number has all of its divisors written out in increasing order. One of those divisors is 323. Find the smallest possible value of the divisor that comes immediately after 323 in that list.

Pick an answer.

(A)
324
(B)
330
(C)
340
(D)
361
(E)
646
How to solve
Strategy Solve an Easier Related Problem

Tool #9 (Solve an Easier Related Problem): the whole problem is about what divides n, so factoring 323 and tracking which prime factors must also divide n is the engine. Tool #4 (Introduce a Variable): naming the next divisor d lets us argue about it before we know its value. Tool #7 (Identify Subproblems): split the work into 'what must d look like' and then 'which choice is smallest and actually achievable'. Tool #3 (Eliminate Possibilities): once we know d must be a multiple of 17 or 19, two of the answer choices fail that test and drop out immediately.

1STEP 1

Name the next divisor and list the facts

Give the next divisor a name.

d = smallest divisor of n with d > 323, 1000 ≤ n ≤ 9999
2STEP 2

Factor 323 to see what must divide n

323 is a product of two primes.

323 = 17 × 19 → 17 ∣ n and 19 ∣ n
3STEP 3

Show the next divisor must share a factor of 17 or 19

If coprime, the number exceeds four digits.

gcd(d,323)=1 → 323 d ∣ n → n ≥ 323 × 324 = 104652 > 9999
4STEP 4

Find the smallest multiple of 17 or 19 above 323

Find the smallest such multiple above 323.

17 × 20 = 340, 19 × 18 = 342 → min = 340
5STEP 5

Check that 340 is actually reachable

Checking it is reachable gives 340.

lcm(323,340) = 2² · 5 · 17 · 19 = 6460 → (C) 340
Answer
340
Test the witness directly: 6460 = 323 × 20 is even and four-digit, 323 and 340 both divide it, and its divisors jump from 323 straight to 340. The two smaller choices fail for a clean reason — 324 and 330 are coprime to 323, so any n holding both them and 323 would need at least 323 × 324, far more than four digits. That leaves 340 as the smallest achievable next divisor, matching (C).
💡Key takeaway

Since 323=17×19, the next divisor has to share a 17 or a 19, and the first one past 323 is 17×20=340.

  • Name the next divisor and list the facts
  • Factor 323 to see what must divide n
  • Show the next divisor must share a factor of 17 or 19
  • Find the smallest multiple of 17 or 19 above 323
  • Check that 340 is actually reachable