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.

A167441 Prime numbers ending in the prime number 71.

Original entry on oeis.org

71, 271, 571, 971, 1171, 1471, 1571, 1871, 2371, 2671, 2971, 3271, 3371, 3571, 3671, 4271, 4871, 5171, 5471, 6271, 6571, 6871, 6971, 8171, 8971, 9371, 9871, 10271, 10771, 11071, 11171, 11471, 11971, 12071, 12671, 13171, 14071, 14771, 15271
Offset: 1

Views

Author

Mark A. Thomas, Nov 03 2009

Keywords

Crossrefs

Cf. similar sequences listed in A244763.

Programs

  • Magma
    [n: n in PrimesUpTo(16000) | n mod 100 eq 71]; // Vincenzo Librandi, Jul 07 2014
  • Mathematica
    Select[Prime[Range[5, 6000]], Take[IntegerDigits[#], -2]=={7, 1} &] (* Vincenzo Librandi, Jul 07 2014 *)
    Select[Prime[Range[6000]],Mod[#,100]==71&] (* Harvey P. Dale, Jan 15 2024 *)