All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Just Math
1 + 2P*3Q= Perfect Square (Posted on 2010-03-19) Difficulty: 4 of 5
Determine all possible pair(s) (P, Q) of nonnegative integers such that 1 + 2P*3Q is a perfect square.

See The Solution Submitted by K Sengupta    
Rating: 5.0000 (1 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Some Thoughts computer exploration Comment 1 of 1

Up to the point where the sum of p and q reaches 5391, there are only 5 sets of (p,q).

list
   10   for Sum=1 to 10000000
   20     for P=0 to Sum
   30        Q=Sum-P
   40        V=1+2^P*3^Q
   50        Sr=int(sqrt(V)+0.5)
   60        if Sr*Sr=V then print P,Q,V,Sr
   70     next
   80   next
OK
produces      
 p       q   1+2^P*3^Q  sqrt(1+2^P*3^Q)


 0       1         4           2
 3       0         9           3
 3       1        25           5
 4       1        49           7
 5       2       289          17
 


before overflowing at a sum of p and q equal to 5391.


  Posted by Charlie on 2010-03-19 12:58:28
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (9)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information