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.

A128436 Primes p such that 2p - 3 and 2p - 1 are twin primes.

Original entry on oeis.org

3, 7, 31, 37, 97, 157, 211, 331, 547, 577, 661, 727, 811, 937, 967, 1171, 1297, 1627, 2011, 2131, 2137, 2467, 2551, 2617, 3067, 3181, 3331, 3391, 3607, 4111, 4507, 4621, 4861, 5167, 5431, 5581, 5851, 6037, 6121, 6271, 6841, 6967, 7297, 7681, 7867, 8317
Offset: 1

Views

Author

Zak Seidov, Mar 03 2007

Keywords

Crossrefs

Programs

  • Magma
    [ p: p in PrimesUpTo(9000) | IsPrime(2*p-3) and IsPrime(2*p-1)] // Vincenzo Librandi, Jan 29 2011
  • Mathematica
    Select[Prime[Range[1000]], PrimeQ[2# - 1] && PrimeQ[2# - 3] &] (* Ray Chandler, May 11 2007 *)