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.

Showing 1-3 of 3 results.

A244763 Prime numbers ending in the prime number 13.

Original entry on oeis.org

13, 113, 313, 613, 1013, 1213, 1613, 1913, 2113, 2213, 2713, 3313, 3413, 3613, 4013, 4513, 4813, 5113, 5413, 5813, 6113, 7013, 7213, 8513, 8713, 9013, 9413, 9613, 10313, 10513, 10613, 11113, 11213, 11813, 12113, 12413, 12613, 12713, 13313, 13513, 13613, 13913
Offset: 1

Views

Author

Vincenzo Librandi, Jul 06 2014

Keywords

Comments

Also primes of the form 100*n+13. Subsequence of A141885, A141937, A166573.

Crossrefs

Cf. Prime numbers ending in the prime number k: A030431 (k=3), A030432 (k=7), A167442 (k=11), this sequence (k=13), A244764 (k=17), A244765 (k=19), A244766 (k=23), A244767 (k=29), A167388 (k=31), A244768 (k=37), A167443 (k=41), A244769 (k=43), A244770 (k=47), A244771 (k=53), A244772 (k=59), A167445 (k=61), A244773 (k=67), A167441 (k=71), A244774 (k=73), A244775 (k=79), A244776 (k=83), A244777 (k=89), A244778 (k=97), A167626 (k=101), A167627 (k=163).

Programs

  • Magma
    [n: n in PrimesUpTo(14000) | n mod 100 eq 13];
    
  • Maple
    select(isprime, [13+100*n $ n=0..1000]); # Robert Israel, Jul 06 2014
  • Mathematica
    Select[Prime[Range[5, 2000]], Take[IntegerDigits[#], -2]=={1, 3}&]
  • PARI
    select(x->(x % 100)==13, primes(2000)) \\ Michel Marcus, Jul 06 2014
    
  • Sage
    [p for p in primes(14000) if mod(p,100) == 13] # Bruno Berselli, Jul 07 2014

A244774 Prime numbers ending in the prime number 73.

Original entry on oeis.org

73, 173, 373, 673, 773, 1373, 1873, 1973, 2273, 2473, 3373, 3673, 4073, 4273, 4373, 4673, 4973, 5273, 5573, 6073, 6173, 6373, 6473, 6673, 7573, 7673, 7873, 8273, 8573, 9173, 9473, 9973, 10273, 10973, 11173, 11273, 12073, 12373, 12473, 12973, 13873
Offset: 1

Views

Author

Vincenzo Librandi, Jul 07 2014

Keywords

Comments

Also primes of the form 100*k+73. Subsequence of A141885, A141945.

Crossrefs

Cf. similar sequences listed in A244763.

Programs

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

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} &]
Showing 1-3 of 3 results.