Solution July 21, 2007
Problem
What is the largest positive integer such that is divisible by ?
Solution
n + 10 | n3 + 100 is equivalent to gcd(n + 10,n3 + 100) = n + 10 By the rules for the gcd (http://en.wikipedia.org/wiki/Greatest_common_divisor) we have
In other words, n + 10 | 900 and the largest such n is n = 890.