A124165
Primes p such that (2^p + 2^((p+1)/2) + 1)/5 is prime.
Original entry on oeis.org
7, 17, 89, 1223, 5479, 11257, 11519, 12583, 23081, 36479, 52567, 52919, 125929, 365689, 1127239, 1148729, 4533073
Offset: 1
Cf.
A124112 (numbers k such that ((1+i)^k+1)/(2+i) is a Gaussian prime).
-
Do[p=Prime[n];f=(2^p+2^((p+1)/2)+1)/5;If[PrimeQ[f],Print[{n,p}]],{n,1,200}]
A125742
Primes p such that (2^p - 2^((p+1)/2) + 1)/5 is prime.
Original entry on oeis.org
5, 11, 13, 29, 43, 53, 283, 557, 563, 613, 691, 2731, 5147, 5323, 9533, 10771, 221891, 235099, 305867, 311027, 333227, 792061, 1347781, 1669219, 1882787, 2305781
Offset: 1
Cf.
A124165 (primes p such that (2^p + 2^((p+1)/2) + 1)/5 is prime).
Cf.
A124112 (numbers n such that ((1+i)^n+1)/(2+i) is a Gaussian prime).
-
Do[p=Prime[n];f=(2^p-2^((p+1)/2)+1)/5;If[PrimeQ[f],Print[{PrimePi[p],p}]],{n,1,28656}]
-
is(p)=isprime(p)&&ispseudoprime((2^p - 2^((p+1)/2) + 1)/5) \\ Charles R Greathouse IV, May 15 2013
a(23-25) = 1347781, 1669219, 1882787 were found by Borys Jaworski between 2008 and 2012 (see the PRP Records link). -
Alexander Adamchuk, Nov 27 2008
a(22) = 792061 was found out-of-sequence by Thomas Ritschel in March of 2014 (see the PRP Records link). -
Serge Batalov, Mar 31 2014
A239842
Numbers n such that the Eisenstein integer ((1-ω)^n+1)/(2-ω) has prime norm, where ω = - 1/2 + sqrt(-3)/2.
Original entry on oeis.org
5, 11, 31, 37, 47, 53, 97, 163, 167, 509, 877, 1061, 2027, 2293, 3011, 6803, 8423, 13627, 20047, 28411, 50221, 50993, 71453, 152809, 272141, 505823, 1353449
Offset: 1
For n = 3: ((1-ω)^31+1)/(2-ω) is an Eisenstein prime because its norm, (3^31-3^16+1)/7 = 88239050462461, is prime.
Cf.
A125743 = Primes p such that (3^p - 3^((p+1)/2) + 1)/7 is prime.
Cf.
A125744 = Primes p such that (3^p + 3^((p+1)/2) + 1)/7 is prime.
Cf.
A066408 = Numbers n such that the Eisenstein integer has prime norm.
Cf.
A124112 = Numbers n such that ((1+I)^n+1)/(2+I) is a Gaussian prime.
-
forprime(n=3,2300,if(ispseudoprime((3^n+kronecker(3,n)*3^((n+1)/2)+1)/7),print1(n ", "))); /* Serge Batalov, Mar 29 2014 */
Showing 1-3 of 3 results.
Comments