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

Home > Numbers
Three Linear Expressions Divide Three Exponent Expressions (Posted on 2023-06-15) Difficulty: 3 of 5
Determine all possible integers n less than 10100 that simultaneously satisfy these conditions:
  • n divides 2n
  • n - 1 divides 2n - 1
  • n - 2 divides 2n - 2
Note: As an extra challenge, determine a semi-analytic (simple calculator + p&p) solution to this problem.

**** Adapted from a problem appearing at a William Lowell Putnam Mathematics Competition

See The Solution Submitted by K Sengupta    
Rating: 4.5000 (2 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Some Thoughts computer exploration | Comment 1 of 4
Testing only n up through 2000,

clearvars,clc
for n=sym(1:2000)
  pwr2=sym(2)^n;
  if mod(pwr2,n)==0
    if mod(pwr2-1,(n-1))==0
      if mod(pwr2-2,(n-2))==0
        disp([n,pwr2])
      end
    end
  end
end

finds only n=4 and n=16 work:

[4, 16]
[16, 65536]

showing n and 2^n

as

4 divides 16; 3 divides 15; 2 divides 14

16 divides 65536; 15 divides 65535; 14 divides 65534

From there on, nothing is found, having checked through n = 2000, though that's a far cry from a googol.

  Posted by Charlie on 2023-06-15 09:41:33
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