![]() |
|
|
#1 |
|
Oct 2008
24 Posts |
Let n is an integer which is great then 3,
b=2^(n-1)+1 , Is there anybody who can prove that n can't be the factor of b? I verified that there is no counterexample for n below 300000000. Until now I can only prove:If there is such an n ,then n must be an odd composite number ! Maybe it is a problem which is just like Fermat Last Theorem which is easy to understand but difficult to give a proof .I guess that there may be no such a bright man in the world who can prove it ! ![]() I verified it by using Mathematica 6.0. The code is follow: Do[If[Mod[PowerMod[2,n-1,n]+1,n]==0,Print[n]],{n,3,3*10^8,2}] |
|
|
|
|
|
#2 | |
|
Feb 2005
22·32·7 Posts |
Quote:
Therefore, we've got that n = m*2^k + 1 is the product of prime factors of the form t*2^(k+1) + 1, implying that n-1 is divisible by 2^(k+1). This contradiction proves that the required n does not exist. Last fiddled with by maxal on 2009-03-16 at 16:08 |
|
|
|
|
|
|
#3 | |
|
Feb 2019
China
738 Posts |
Quote:
2^(2n-2)=1(mod n) this told me that ordn(2)=2n-2>n 2^eulerphi(n)=1(mod n) this told me that ordn(2)<eulerphi(n)<n, contradict! |
|
|
|
|
|
|
#4 | |
|
Feb 2019
China
59 Posts |
Quote:
Code:
Do[If[Mod[PowerMod[3, n - 1, n] + 1, n] == 0,
Print[{n, FactorInteger[n]}]], {n, 3, 10^6}]
3^(28-1)+1=272342767321*28 is multiple of 28 i do not know why Last fiddled with by bbb120 on 2019-03-08 at 08:09 |
|
|
|
|
|
|
#5 | |
|
Feb 2017
Nowhere
4,643 Posts |
Quote:
A correct proof has already been posted, which I summarize: If 2^(n-1) == -1 (mod n), it follows that n is odd, and valuation(n-1,2) < valuation(p-1, 2) for every prime factor p of n, where valuation(N,2) is the exact number of times 2 divides N. This is impossible. |
|
|
|
|
![]() |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| l'état, c'est moi. Give me what I want, and give it now!!! | Stargate38 | Lounge | 7 | 2014-06-07 14:33 |
| time to give up on oil ? | science_man_88 | Science & Technology | 7 | 2010-07-29 13:13 |
| Give back a work? | Sounder | Information & Answers | 3 | 2007-10-08 00:41 |
| who can give me a p95v237? | rzr43 | Software | 1 | 2004-12-12 03:56 |
| Oh give me a clone | xilman | Soap Box | 5 | 2004-02-15 00:38 |