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.

A098413 Greatest members p of prime triples (p-6, p-2, p).

Original entry on oeis.org

13, 19, 43, 73, 103, 109, 199, 229, 283, 313, 463, 619, 829, 859, 883, 1093, 1303, 1429, 1453, 1489, 1669, 1699, 1789, 1873, 1879, 1999, 2089, 2143, 2383, 2689, 2713, 2803, 3169, 3259, 3463, 3469, 3853, 4159, 4519, 4789, 5233, 5419, 5443, 5653, 5659, 5743
Offset: 1

Views

Author

Reinhard Zumkeller, Sep 07 2004

Keywords

Comments

Subsequence of A046117; a(n) = A073649(n) + 2 = A022005(n) + 6.

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(6500)|IsPrime(p) and IsPrime(p-6) and IsPrime(p-2)]; // Vincenzo Librandi, Dec 26 2010
  • Mathematica
    Transpose[Select[Partition[Prime[Range[800]],3,1],Differences[#] == {4,2}&]][[3]] (* Harvey P. Dale, Aug 21 2013 *)