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.

A244768 Prime numbers ending in the prime number 37.

Original entry on oeis.org

37, 137, 337, 937, 1237, 1637, 2137, 2237, 2437, 2837, 3037, 3137, 3637, 4337, 4637, 4937, 5237, 5437, 5737, 6037, 6337, 6637, 6737, 7237, 7537, 7937, 8237, 8537, 8737, 8837, 9137, 9337, 9437, 10037, 10337, 10837, 10937, 11437, 12037, 12437, 12637, 13037
Offset: 1

Views

Author

Vincenzo Librandi, Jul 06 2014

Keywords

Comments

Also primes of the form 100*n+37. Subsequence of A141886, A141936.

Crossrefs

Cf. similar sequences listed in A244763.

Programs

  • Magma
    [n: n in PrimesUpTo(16000) | n mod 100 eq 37];
    
  • Mathematica
    Select[Prime[Range[5, 6000]], Take[IntegerDigits[#], -2]=={3, 7} &]
    Select[Prime[Range[2000]],Mod[#,100]==37&] (* Harvey P. Dale, Dec 25 2022 *)
  • PARI
    select(x->(x % 100)==37, primes(2000)) \\ Michel Marcus, Jul 06 2014