cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A295111 Primes p such that 2^p - p is also a prime.

Original entry on oeis.org

2, 3, 13, 19, 481801
Offset: 1

Views

Author

Iain Fox, Nov 14 2017

Keywords

Comments

a(6) > 1061095.
Intersection of A000040 and A048744.
Since numbers other than 3 that are congruent to 3 mod 6 are composite, for n > 2, a(n) is congruent to 1 mod 6 (see comments by Iain Fox in A048744).

Examples

			p=13, 2^13 - 13 = 8179 is prime.
		

Crossrefs

Programs

  • PARI
    lista(nn) = forprime(p=2, nn, if(ispseudoprime(2^p - p), print1(p, ", ")))