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.

A171517 Primes p such that 2*p+11 is prime.

Original entry on oeis.org

3, 13, 31, 43, 73, 109, 151, 163, 181, 193, 199, 211, 223, 283, 331, 349, 373, 379, 409, 421, 433, 463, 499, 541, 571, 601, 613, 619, 643, 709, 739, 769, 823, 829, 883, 991, 1009, 1021, 1039, 1051, 1063, 1129, 1213, 1231, 1291, 1303, 1423, 1453, 1471, 1549
Offset: 1

Views

Author

Keywords

Examples

			2*3+11=17, which is prime.
		

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(1600) | IsPrime(2*p+11)]; // Vincenzo Librandi, Apr 27 2014
  • Mathematica
    Select[Prime[Range[6! ]],PrimeQ[2*#+11]&]