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

Home > Numbers
Add 1 to Exponent*Number, Get Square (Posted on 2023-07-02) Difficulty: 3 of 5
Determine all possible values of a nonnegative integer n such that;

• 2n-1*n +1 is a perfect square.

Note: Adapted from a problem which appeared in a Georgia IMO.

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 findings | Comment 1 of 2
digits 300
clearvars,clc
for n=vpa(0):450
  v=2^(n-1)*n+1;
  sr=round(sqrt(v));
  if sr*sr==v
    disp([n v sr])
  end
end

finds only

[0, 1, 1]
[5.0, 81.0, 9]

for the [n, formula value, square root].

  Posted by Charlie on 2023-07-02 10:09:16
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 (10)
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