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.

Showing 1-1 of 1 results.

A174281 Primes p such that 20*p^2+32*p+13 is also prime.

Original entry on oeis.org

2, 5, 7, 17, 19, 23, 29, 47, 73, 83, 89, 97, 107, 113, 127, 137, 149, 163, 197, 227, 229, 233, 239, 257, 269, 307, 359, 367, 373, 379, 439, 449, 557, 569, 619, 647, 673, 727, 739, 769, 797, 827, 877, 883, 919, 977, 983, 997, 1009, 1033, 1039, 1087, 1117, 1123
Offset: 1

Views

Author

Vincenzo Librandi, Mar 15 2010

Keywords

Examples

			For p=2, 20*2^2+32*2+13=157; p=5, 20*5^2+32*5+13=673.
		

Crossrefs

Cf. A154414.

Programs

  • Magma
    [p: p in PrimesUpTo(2000)| IsPrime(20*p^2+32*p+13)];
  • Mathematica
    Select[Prime[Range[200]], PrimeQ[20 #^2 + 32 # + 13]&] (* Vincenzo Librandi, Apr 16 2013 *)
Showing 1-1 of 1 results.