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.

A244772 Prime numbers ending in the prime number 59.

Original entry on oeis.org

59, 359, 659, 859, 1259, 1459, 1559, 1759, 2459, 2659, 3259, 3359, 3559, 3659, 4159, 4259, 4759, 5059, 5659, 6359, 6659, 6959, 7159, 7459, 7559, 7759, 8059, 9059, 9859, 10159, 10259, 10459, 10559, 10859, 11059, 11159, 11959, 12659, 12959, 13159, 13259
Offset: 1

Views

Author

Vincenzo Librandi, Jul 07 2014

Keywords

Comments

Also primes of the form 100*n+59. Subsequence of A141887, A141934.

Crossrefs

Cf. similar sequences listed in A244763.

Programs

  • Magma
    [n: n in PrimesUpTo(14000) | n mod 100 eq 59];
    
  • Mathematica
    Select[Prime[Range[5, 6000]], Take[IntegerDigits[#], -2]=={5, 9} &]
  • PARI
    select(x->(x % 100)==59, primes(2000)) \\ Michel Marcus, Jul 07 2014