Each of a, b, and c is a different base ten digit and n is a positive integer such that:
ab2+c2=ac2+cb2=n
For example:
272+12=212+172=730
Determine the total number of values of the positive integer constant n less than 2023, such that we will have valid values of a,b, and c satisfying the abovementioned condition.
***** No number can contain any leading zero.
(In reply to
45 other solutions by Steve Herman)
When I first started to solve this problem, I thought the first equation was:
a * b^2 + c^2,
but then I realized that the digits are being concatenated, so instead it is:
(10*a+b)^2 + c^2
|
Posted by Larry
on 2023-04-22 09:44:17 |