Find the minimum value of k so that k is a composite number but 8 ! + k is a prime.
Hint : What is the minimum value of k if we only consider (partly) that k is a composite number?
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.
Great solution!
8 ! = 4 0 3 2 0 = 2 7 ⋅ 3 2 ⋅ 5 ⋅ 7
Suppose that k is of the form 2 a ⋅ 3 b ⋅ 5 c ⋅ 7 d ⋅ n ( a , b , c , d , n ∈ N ) with at least one of a , b , c , d non-zero. Wlog assume a = 0 , then
8 ! + k = 2 ( 2 0 1 6 0 + 2 a − 1 ⋅ 3 b ⋅ 5 c ⋅ 7 d ⋅ n )
Which is not prime. With a similar reasoning also non-zero b , c or d make 8 ! + k a composite number. So, according to the second constraint, k does not containt factors of 2 , 3 , 5 or 7 in its prime factorization
We now search for the least possible composite k that satisfies the second constraint. Proceeding in ascending order:
1 1 2 , 1 1 ⋅ 1 3 , 1 3 2 , 1 1 ⋅ 1 7 , 1 3 ⋅ 1 7 , …
8 ! + 1 1 2 = 4 0 4 4 1 = 3 7 ⋅ 1 0 9 3
8 ! + 1 1 ⋅ 1 3 = 4 0 4 6 3 = 4 3 ⋅ 9 4 1
8 ! + 1 3 2 = 4 0 4 8 9 = 1 9 ⋅ 2 1 3 1
8 ! + 1 1 ⋅ 1 7 = 4 0 5 0 7 prime
Hence the least possible k is
k = 1 1 ⋅ 1 7 = 1 8 7
Great solution!
Problem Loading...
Note Loading...
Set Loading...
If 8 ! + k is prime, k must be greater than 8 and cannot be divisible by any multiples of 2 → 8 ( this problem will illustrate why).
Thus, k must have prime factors ≥ 1 1 . Testing the combinations of multiplied primes ≥ 1 1 , we quickly find our number:
8 ! + ( 1 1 × 1 1 ) 8 ! + ( 1 1 × 1 3 ) 8 ! + ( 1 3 × 1 3 ) 8 ! + ( 1 1 × 1 7 ) = 3 7 × 1 0 9 3 → composite = 4 3 × 9 4 1 → composite = 1 9 × 2 1 3 1 → composite = 1 × 4 0 5 0 7 → prime
Thus, the minimum composite k is 1 1 × 1 7 = 1 8 7 .