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.

A244771 Prime numbers ending in the prime number 53.

Original entry on oeis.org

53, 353, 653, 853, 953, 1153, 1453, 1553, 1753, 2053, 2153, 2753, 2953, 3253, 3853, 4153, 4253, 5153, 5653, 5953, 6053, 6353, 6553, 6653, 7253, 7753, 7853, 8053, 8353, 8753, 10253, 10453, 10753, 10853, 11353, 11953, 12253, 12553, 12653, 12853, 12953, 13553
Offset: 1

Views

Author

Vincenzo Librandi, Jul 07 2014

Keywords

Comments

Also primes of the form 100*n+53. Subsequence of A141885, A141929.

Crossrefs

Cf. similar sequences listed in A244763.

Programs

  • Magma
    [n: n in PrimesUpTo(14000) | n mod 100 eq 53];
  • Mathematica
    Select[Prime[Range[5, 6000]], Take[IntegerDigits[#], -2]=={5, 3} &]