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!)
A244913 Primes p such that 2^pi(p-1) - p is also prime. 2
11, 13, 17, 19, 23, 37, 61, 233, 257, 1553, 2879, 4919, 6389, 7621, 8081, 35593, 37951, 96263, 206419, 596803, 1202837 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(22) > 1211303. - J.W.L. (Jan) Eerland, Dec 08 2022
LINKS
FORMULA
{p in A000040: 2^[A000720(p-1)]-p in A000040}. - R. J. Mathar, Jul 11 2014
MAPLE
for i from 1 do
p := ithprime(i) ;
if isprime(2^(numtheory[pi](p-1))-p) then
printf("%d, \n", p) ;
end if;
end do: # R. J. Mathar, Jul 11 2014
MATHEMATICA
p = 2; lst = {}; While[p < 800001, If[ PrimeQ[ 2^(PrimePi@ p-1) - p], AppendTo[lst, p]; Print@ p]; p = NextPrime@ p]; lst
n=1; Monitor[Parallelize[While[True, If[PrimeQ[2^(PrimePi[Prime[n]-1])-Prime[n]], Print[Prime[n]]]; n++]; n], n] (* J.W.L. (Jan) Eerland, Dec 08 2022 *)
PROG
(PARI) is(n)=isprime(n) && isprime(2^primepi(n-1)-n) \\ Charles R Greathouse IV, Feb 25 2017
CROSSREFS
Sequence in context: A050719 A217062 A293662 * A098415 A329176 A067283
KEYWORD
nonn,more
AUTHOR
Robert G. Wilson v, Jul 09 2014
EXTENSIONS
a(21) from J.W.L. (Jan) Eerland, Dec 08 2022
STATUS
approved

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 April 25 09:17 EDT 2024. Contains 371967 sequences. (Running on oeis4.)