You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Let r be the remainder when (a−1)^(n) + (a+1)^(n) is divided by a^(2).
#
# For example, if a = 7 and n = 3, then r = 42: 6^(3) + 8^(3) = 728 ≡ 42 mod 49. And as n varies, so too will r, but for a = 7 it turns out that r_(max) = 42.
#
# For 3 ≤ a ≤ 1000, find ∑ r_(max).
#using Newton's binom we can easily show that when n is even we have (a−1)^(n) + (a+1)^(n) = 2 (mod a^2)
#and when n is odd we have (a−1)^(n) + (a+1)^(n) = 2na (mod a^2)
#in other words, the possible values for r_max are of the form ka (mod a^2) where k is even