The equation has exactly 4 pairs of positive integer solutions: .
Find the largest possible value of such that the equation has exactly 4 pairs of positive integer solutions .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
I just searched the first 1000 k on Mathematica
Select[Range@1000,Length@Solve[3x+5y==#&&x>0&&y>0,{x,y},Integers]==4&]
which returns all the k with exactly 4 pairs of positive integer solutions
{53, 56, 58, 59, 61, 62, 63, 64, 65, 66, 67, 69, 70, 72, 75}