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.

A244776 Prime numbers ending in the prime number 83.

Original entry on oeis.org

83, 283, 383, 683, 883, 983, 1283, 1483, 1583, 1783, 2083, 2383, 2683, 3083, 3583, 4283, 4483, 4583, 4783, 5483, 5683, 5783, 6883, 6983, 7283, 7583, 7883, 8783, 9283, 9883, 10883, 11083, 11383, 11483, 11783, 12583, 12983, 13183, 13883, 14083, 14683
Offset: 1

Views

Author

Vincenzo Librandi, Jul 07 2014

Keywords

Comments

Also primes of the form 100*n+83. Subsequence of A141933.

Crossrefs

Cf. similar sequences listed in A244763.
Cf. A141933.

Programs

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