The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A237183 Primes p with phi(p+1) - 1 and phi(p+1) + 1 both prime, where phi(.) is Euler's totient function. 2

%I #11 Mar 06 2014 09:56:20

%S 7,11,13,17,37,41,53,61,97,151,181,197,227,233,251,269,277,397,433,

%T 457,487,541,557,571,593,619,631,719,743,769,839,857,929,941,947,953,

%U 1013,1021,1049,1061,1063,1201,1237,1277,1307,1321,1367,1481,1511,1549

%N Primes p with phi(p+1) - 1 and phi(p+1) + 1 both prime, where phi(.) is Euler's totient function.

%C According to part (i) of the conjecture in A237168, this sequence should have infinitely many terms.

%H Zhi-Wei Sun, <a href="/A237183/b237183.txt">Table of n, a(n) for n = 1..10000</a>

%e a(1) = 7 since 7, phi(7+1) - 1 = 3 and phi(7+1) + 1 = 5 are all prime, but phi(2+1) - 1 = phi(3+1) - 1 = phi(5+1) - 1 = 1 is not prime.

%t PQ[n_]:=PrimeQ[EulerPhi[n]-1]&&PrimeQ[EulerPhi[n]+1]

%t n=0;Do[If[PQ[Prime[k]+1],n=n+1;Print[n," ",Prime[k]]],{k,1,10000}]

%t Select[Prime[Range[300]],And@@PrimeQ[EulerPhi[#+1]+{1,-1}]&] (* _Harvey P. Dale_, Mar 06 2014 *)

%o (PARI) s=[]; forprime(p=2, 2000, if(isprime(eulerphi(p+1)-1) && isprime(eulerphi(p+1)+1), s=concat(s, p))); s \\ _Colin Barker_, Feb 04 2014

%Y Cf. A000010, A000040, A001359, A006512, A072281, A237127, A237130, A237168.

%K nonn

%O 1,1

%A _Zhi-Wei Sun_, Feb 04 2014

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 1 14:02 EDT 2024. Contains 373023 sequences. (Running on oeis4.)