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.

A113151 Primes p such that 19*p + 2 is also prime.

Original entry on oeis.org

3, 5, 11, 23, 53, 59, 83, 89, 149, 191, 263, 269, 293, 353, 359, 389, 401, 419, 431, 443, 461, 479, 521, 599, 653, 683, 761, 809, 821, 881, 941, 971, 983, 1013, 1061, 1091, 1103, 1151, 1181, 1193, 1283, 1511, 1571, 1613, 1619, 1931, 1973, 2063
Offset: 1

Views

Author

Parthasarathy Nambi, Jan 04 2006

Keywords

Examples

			If p=263 then 19*p + 2 = 4999 (prime).
		

Programs

  • Magma
    [p: p in PrimesUpTo(3000)|  IsPrime(19*p+2)]; // Vincenzo Librandi, Jan 29 2011
  • Mathematica
    Select[Prime[Range[500]],PrimeQ[19#+2]&] (* Harvey P. Dale, Dec 12 2012 *)