Find sum of all positive integers n such that 3 2 n + 3 n 2 + 7 is a perfect square.
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.
This is longer solution, but good enough.
We check two cases about the property of n .
(a) If n is odd, ie. n = 2 k + 1 for any non-negative integer k , then n 2 is of the form 4 m + 1 , for some non-negative integer m . Thus the expression turns to
3 4 k + 2 + 3 ( 4 m + 1 ) + 7 = 9 ⋅ 8 1 k + 1 2 m + 1 0
Now, 9 ⋅ 8 1 k is congruent to 1 m o d 4 , giving 9 ⋅ 8 1 k + 1 2 m + 1 0 congruent to 3 m o d 4 . But a perfect square can't be congruent to 3 m o d 4 . Thus, n cannot be an odd positive integer.
(b) If n is even, ie. n = 2 k for any k ∈ N , then
3 2 n + 3 n 2 + 7 = 9 2 k + 1 2 k 2 + 7
Now 9 2 k < 9 2 k + 1 2 k 2 + 7 ≤ ( 9 k + 1 ) 2 and the equality holds only at k = 1 and the given expression can't be a perfect square for any n > 2 . Thus, 3 2 n + 3 n 2 + 7 is a perfect square only for n = 2 . 1
Hence n = 2 is only solution for n, giving ∑ n = 2 .
Problem Loading...
Note Loading...
Set Loading...
Solution outline:
( 3 n ) 2 < 3 2 n + 3 n 2 + 7 < ( 3 n + 1 ) 2
for n > 2 .
So the given expression can't be a perfect square for any n > 2 . Checking n = 1 , 2 , we see that only n = 2 works.
So our answer is 2 .