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.

A171139 Primes p such that 7*p^2+7*p-1 is also prime.

Original entry on oeis.org

2, 3, 17, 19, 23, 29, 47, 67, 73, 97, 113, 151, 163, 173, 223, 227, 229, 239, 251, 257, 263, 311, 331, 359, 367, 373, 389, 409, 419, 433, 439, 457, 463, 491, 503, 523, 541, 563, 569, 607, 701, 733, 809, 853, 877, 883, 941, 953, 967, 983, 1013, 1033, 1049
Offset: 1

Views

Author

Vincenzo Librandi, Jan 26 2010

Keywords

Crossrefs

Cf. A171138.

Programs

  • Magma
    [p: p in PrimesUpTo(1050) | IsPrime(7*p^2+7*p-1)]; // Vincenzo Librandi, Apr 16 2013
  • Mathematica
    Select[Prime[Range[200]], PrimeQ[7 #^2 + 7 # - 1]&] (* Vincenzo Librandi, Apr 16 2013 *)