mersenneforum.org  

Go Back   mersenneforum.org > New To GIMPS? Start Here! > Homework Help

Reply
 
Thread Tools
Old 2012-10-27, 16:04   #1
Unregistered
 

2×139 Posts
Default Generalized Mersenne Primes

I believe that I remember a theorem having to do with Generalized Mersenne primes of the form: (a^n+b^n)/(a+b).
The theorem states that if (a^n+b^n)/(a+b) is prime, then n must also be prime.
Does anyone know a reference that has a proof of this?
Thanks.
  Reply With Quote
Old 2012-10-27, 18:18   #2
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
San Diego, Calif.

242438 Posts
Default

For even values of n, this doesn't divide. For them, there's no denominator, but the logic below still applies.

For odd values of n: Suppose you have a composite n = k*m, with k>=3. Then,
(an+bn)/(a+b) = (akm+bkm)/(a+b) =
= (ak+bk)/(a+b)*(a(k-1)m - bm*a(k-2)m + b2m*a(k-3)m + ... + b(k-1)m)
where (ak+bk)/(a+b) is > 1. QED, composite.

For proper Mersenne numbers a+b = 2+(-1) = 1, which makes for an interesting case - there's no denominator.

When b=1, an+bn is a proper Fermat number, and for b>1 and odd (prime) n, (an+bn)/(a+b) has the property that you sought for.

Last fiddled with by Batalov on 2012-10-27 at 18:24
Batalov is offline   Reply With Quote
Old 2012-10-27, 18:28   #3
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dartmouth NS

214816 Posts
Default

Quote:
Originally Posted by Unregistered View Post
I believe that I remember a theorem having to do with Generalized Mersenne primes of the form: (a^n+b^n)/(a+b).
The theorem states that if (a^n+b^n)/(a+b) is prime, then n must also be prime.
Does anyone know a reference that has a proof of this?
Thanks.
Code:
(15:18)>for(a=1,100,
            for(b=a,100,
                for(n=1,100,
                     if(((a^n+b^n)/(a+b))%1.==0 &&isprime((a^n+b^n)/(a+b)) && !isprime(n),
                         print(((a^n+b^n)/(a+b))","a","b","n);)
                    )
                )
          )
Quote:
14321,6,26,4
280097,12,69,4
4481,14,18,4
134417,24,57,4
shows that n=4 has counterexamples.
science_man_88 is offline   Reply With Quote
Old 2012-10-27, 19:14   #4
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
San Diego, Calif.

101×103 Posts
Default

For even values of n (and not coprime a,b), indeed, you can arrive to some convenient cancellations (a+b will have to be 2*gcd(a,b)n, where n will be a power of two) and get an extended Generalized Fermat in disguise.
E.g. (6^4+26^4)/(6+26) is xGF'(3,13,4).
Batalov is offline   Reply With Quote
Old 2012-10-27, 19:31   #5
Batalov
 
Batalov's Avatar
 
"Serge"
Mar 2008
San Diego, Calif.

101000101000112 Posts
Default

P.S. Correction re: 2*gcd(). Not always 2, of course. 2 will frequent, because there are very many prime xGF'(a,b,4) (=(a^4+b^4)/2) with odd a and odd b. Tons. When a+b is 2x, you can finish the counterexample by multiplying a and b by 2x-1 or similar. Ugh, I need some coffee.

Last fiddled with by Batalov on 2012-10-27 at 19:33
Batalov is offline   Reply With Quote
Old 2012-10-30, 14:47   #6
Unregistered
 

2·3·1,319 Posts
Default

Thanks so much for your replies. Very helpful.
Batalov, if I understand your arguments, if n is odd and composite then (a^n+b^n)/(a+b) must also be composite. Can this be extended to any composite n with an odd factor? If so, then only n that are powers of two could possibly result in a prime. I have found some counterexamples and have observed that a and b are never coprime. Can you think of an argument to support this observation about coprimes? Thanks.
  Reply With Quote
Old 2012-10-31, 14:16   #7
science_man_88
 
science_man_88's Avatar
 
"Forget I exist"
Jul 2009
Dartmouth NS

214816 Posts
Default

Quote:
Originally Posted by Unregistered View Post
Thanks so much for your replies. Very helpful.
Batalov, if I understand your arguments, if n is odd and composite then (a^n+b^n)/(a+b) must also be composite. Can this be extended to any composite n with an odd factor? If so, then only n that are powers of two could possibly result in a prime. I have found some counterexamples and have observed that a and b are never coprime. Can you think of an argument to support this observation about coprimes? Thanks.
well assume gcd(a,b)=c then the equation comes to:

(a^n+b^n)/(a+b) = c^n*(d^n+e^n)/c*(d+e) =c^(n-1)*(d^n+e^n)/(d+e) so if (d^n+e^n)/(d+e) is integer so is (a^n+b^n)/(a+b) but with a integer divisor >1 so it's not prime.
science_man_88 is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
generalized minimal (probable) primes sweety439 sweety439 140 2022-12-20 07:08
Generalized Repunit primes Bob Underwood Math 12 2020-10-11 20:01
Good sieve for Generalized Pierpoint primes carpetpool Information & Answers 9 2018-02-24 21:41
Generalized Mersenne Sequence continuation carpetpool Miscellaneous Math 1 2017-03-23 23:42
Generalized Mersenne Primes Cyclamen Persicum Math 1 2004-01-30 15:11

All times are UTC. The time now is 02:33.


Sat Sep 30 02:33:02 UTC 2023 up 17 days, 15 mins, 0 users, load averages: 1.37, 1.04, 0.90

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.

≠ ± ∓ ÷ × · − √ ‰ ⊗ ⊕ ⊖ ⊘ ⊙ ≤ ≥ ≦ ≧ ≨ ≩ ≺ ≻ ≼ ≽ ⊏ ⊐ ⊑ ⊒ ² ³ °
∠ ∟ ° ≅ ~ ‖ ⟂ ⫛
≡ ≜ ≈ ∝ ∞ ≪ ≫ ⌊⌋ ⌈⌉ ∘ ∏ ∐ ∑ ∧ ∨ ∩ ∪ ⨀ ⊕ ⊗ 𝖕 𝖖 𝖗 ⊲ ⊳
∅ ∖ ∁ ↦ ↣ ∩ ∪ ⊆ ⊂ ⊄ ⊊ ⊇ ⊃ ⊅ ⊋ ⊖ ∈ ∉ ∋ ∌ ℕ ℤ ℚ ℝ ℂ ℵ ℶ ℷ ℸ 𝓟
¬ ∨ ∧ ⊕ → ← ⇒ ⇐ ⇔ ∀ ∃ ∄ ∴ ∵ ⊤ ⊥ ⊢ ⊨ ⫤ ⊣ … ⋯ ⋮ ⋰ ⋱
∫ ∬ ∭ ∮ ∯ ∰ ∇ ∆ δ ∂ ℱ ℒ ℓ
𝛢𝛼 𝛣𝛽 𝛤𝛾 𝛥𝛿 𝛦𝜀𝜖 𝛧𝜁 𝛨𝜂 𝛩𝜃𝜗 𝛪𝜄 𝛫𝜅 𝛬𝜆 𝛭𝜇 𝛮𝜈 𝛯𝜉 𝛰𝜊 𝛱𝜋 𝛲𝜌 𝛴𝜎𝜍 𝛵𝜏 𝛶𝜐 𝛷𝜙𝜑 𝛸𝜒 𝛹𝜓 𝛺𝜔