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.

A153767 Primes p such that 8*p - 9 is also prime.

Original entry on oeis.org

2, 5, 7, 11, 17, 29, 31, 47, 59, 61, 109, 131, 137, 139, 167, 179, 181, 197, 199, 229, 251, 269, 277, 281, 307, 337, 347, 367, 379, 397, 419, 421, 449, 467, 479, 491, 521, 557, 599, 601, 619, 631, 641, 647, 661, 677, 691, 719, 727, 739, 757, 761, 769, 787, 797
Offset: 1

Views

Author

Vincenzo Librandi, Jan 01 2009

Keywords

Examples

			For p=31 (a prime), 8*p - 9 = 239 is also prime, so 31 is in the sequence.
		

Crossrefs

Cf. A153766.

Programs

  • Magma
    [p: p in PrimesUpTo(1000) | IsPrime(8*p-9)]; // Vincenzo Librandi, Apr 04 2013
  • Mathematica
    Select[Prime[Range[150]], PrimeQ[8 # - 9]&] (* Vincenzo Librandi, Apr 04 2013 *)

Extensions

4 removed, extended by R. J. Mathar, Jan 07 2009