Page 2 of 2
Re: Problem 135
Posted: Sun Feb 17, 2013 11:37 pm
by TripleM
No, there isn't.
Re: Problem 135
Posted: Mon Feb 18, 2013 12:05 am
by JMW1994
Thanks for the clarification.
Re: Problem 135
Posted: Mon Jul 15, 2013 7:17 pm
by Kevin_L
A friend of mine spoiled the answer to this one for me, so I know my current wrong answer is close (my answer is 12 too small), but I refuse to type in the correct answer until I get it myself.
Can anyone confirm or deny the following partial results:
Let
d be the common difference of the arithmetic progression in question. If you restrict yourself to arithmetic progressions that have
d<=400, 550, 10^3, or 10^4, then the last three digits of the answers would be
respectively.
It's killing me trying to find out where the missing 12 solutions are.
Re: Problem 135
Posted: Mon Aug 05, 2013 8:33 pm
by alice0meta
Kevin_L wrote:A friend of mine spoiled the answer to this one for me, so I know my current wrong answer is close (my answer is 12 too small), but I refuse to type in the correct answer until I get it myself.
Can anyone confirm or deny the following partial results:
Let
d be the common difference of the arithmetic progression in question. If you restrict yourself to arithmetic progressions that have
d<=400, 550, 10^3, or 10^4, then the last three digits of the answers would be
respectively.
It's killing me trying to find out where the missing 12 solutions are.
you're letting z equal 0
z != 0
Re: Problem 135
Posted: Mon Nov 09, 2015 6:20 am
by Neilius
I am enjoying this problem very much.
I would like to verify my algorithm for a values of n other than 1155.
The next higher value of n I get with ten solutions is n=1755.
I suspect this is incorrect.
Am I incorrect in my calculation that n=1755 has ten solutions?
Does it really have more?
Thanks in advance.
Re: Problem 135
Posted: Mon Nov 09, 2015 12:56 pm
by dawghaus4
Neilius wrote:..
The next higher value of n I get with ten solutions is n=1755.
I suspect this is incorrect.
...
It is you suspicion that is incorrect.
Tom
Re: Problem 135
Posted: Tue Nov 10, 2015 4:45 am
by Neilius
dawghaus4 wrote:
It is you suspicion that is incorrect.
Tom
Many thanks.
I finally worked it out.
Program runs in about 6 seconds.
A very enjoyable problem

Re: Problem 135
Posted: Wed Feb 19, 2020 11:28 pm
by DanielJackson
n = a*b, a > b
Let n = 15 = 15*1 = 5*3
1. a = 15, b = 1 => d = 4, 19^2 - 15^2 - 11^2 = 15
2. a = 5, b = 3 => d = 2, 7^2 - 5^2 - 3^2 = 15
n = 15 has exactly 2 solutions and 15 < 27 (by condition). Where am I wrong?
Re: Problem 135
Posted: Thu Feb 20, 2020 12:40 am
by mdean
DanielJackson wrote: Wed Feb 19, 2020 11:28 pm
n = a*b, a > b
Let n = 15 = 15*1 = 5*3
1. a = 15, b = 1 => d = 4, 19^2 - 15^2 - 11^2 = 15
2. a = 5, b = 3 => d = 2, 7^2 - 5^2 - 3^2 = 15
n = 15 has exactly 2 solutions and 15 < 27 (by condition). Where am I wrong?
$5^2-3^2-1^2=15$. 15 has at least 3 solutions.
Re: Problem 135
Posted: Thu Feb 20, 2020 4:21 am
by DanielJackson
mdean wrote: Thu Feb 20, 2020 12:40 am
$5^2-3^2-1^2=15$. 15 has at least 3 solutions.
I realized I hadn't considered it. Thanks