(In reply to
Another solution by Brian Smith)
I like the inductive proof best, but it had a small typo, losing the 10.
The proof should go as below:
a(1) = 19 * 53, a(1) is a multiple of 53
a(n) = 10 a(n-1) - 53
suppose a(n-1) = k * 53
a(n) = 10 * a(n-1) - 53 = 10 (k * 53) - 53
= (10 k -1) * 53
Since 10 k -1 is integer, a(n) is a multiple of 53
Edited on January 30, 2025, 1:56 pm