![]() |
|
|
#1 |
|
Dec 2011
22·32 Posts |
Is it possible to find a positive composite integer n such that phi(n) divides (n - 1)?
|
|
|
|
|
|
#2 | |
|
"Forget I exist"
Jul 2009
Dumbassville
838410 Posts |
Quote:
Code:
(11:30)>for(x=1,1000000,if(!isprime(x) && (x-1)%eulerphi(x)==0,print(x))) 1 Last fiddled with by science_man_88 on 2011-12-05 at 15:32 |
|
|
|
|
|
|
#3 | |
|
Dec 2011
2416 Posts |
Quote:
If this is true, is it possible to prove phi(n) divides (n- 1) implies n is prime? |
|
|
|
|
|
|
#4 | |
|
"Forget I exist"
Jul 2009
Dumbassville
203008 Posts |
Quote:
Last fiddled with by science_man_88 on 2011-12-05 at 16:23 |
|
|
|
|
|
|
#5 |
|
Jun 2003
7·167 Posts |
if For square-free n, the above formula reduces to (1) and (2) are Korselt's criterion for a Carmichael number. These aren't particularly rare, but Perhaps SM88 could modify his script to test the first 10000 Carmichael numbers. Last fiddled with by Mr. P-1 on 2011-12-05 at 21:19 |
|
|
|
|
|
#6 | |
|
Jun 2003
7×167 Posts |
Quote:
Still I find your question interesting. Perhaps someone more knowledgeable than I can answer it. Last fiddled with by Mr. P-1 on 2011-12-05 at 21:18 |
|
|
|
|
|
|
#7 | |
|
Dec 2011
22×32 Posts |
Quote:
Does this imply n is prime? Or am I chasing moonbeams? Clearly, either (n-1) divides phi(n), in which case n is prime, or phi(n) divides (n-1). Last fiddled with by Stan on 2011-12-05 at 21:33 |
|
|
|
|
|
|
#8 | ||
|
Jun 2003
7·167 Posts |
Quote:
The Carmichael numbers are composite numbers n such that Quote:
|
||
|
|
|
|
|
#9 | |
|
Aug 2006
10111010110112 Posts |
Quote:
Code:
v=bfile(2997); for(i=1,#v,if((v[i]-1)%eulerphi(v[i])==0,return(v[i]))) |
|
|
|
|
|
|
#10 | |
|
"Forget I exist"
Jul 2009
Dumbassville
838410 Posts |
Quote:
|
|
|
|
|
|
|
#11 |
|
Jun 2003
7·167 Posts |
|
|
|
|