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-2 of 2 results.

A032621 Numbers k such that k concatenated with k+6 is a prime.

Original entry on oeis.org

1, 11, 13, 17, 25, 31, 35, 43, 65, 71, 83, 95, 97, 101, 125, 127, 137, 151, 155, 157, 161, 163, 167, 187, 197, 203, 205, 211, 217, 221, 223, 227, 233, 235, 245, 251, 257, 263, 265, 271, 283, 317, 331, 335, 337, 341, 353, 355, 373, 385, 391, 401, 427, 433
Offset: 1

Views

Author

Patrick De Geest, May 15 1998

Keywords

Crossrefs

Cf. A032611.

Programs

  • Maple
    filter:= n -> isprime(n * 10^(1+ilog10(n+6)) + n + 6):
    select(filter, [seq(i,i=1..1000,2)]); # Robert Israel, May 13 2025
  • Mathematica
    Select[Range[1,501,2],PrimeQ[FromDigits[Join[IntegerDigits[#], IntegerDigits[ #+6]]]]&] (* Harvey P. Dale, Nov 17 2013 *)

A032629 Primes that are concatenations of n with n + 6.

Original entry on oeis.org

17, 1117, 1319, 1723, 2531, 3137, 3541, 4349, 6571, 7177, 8389, 95101, 97103, 101107, 125131, 127133, 137143, 151157, 155161, 157163, 161167, 163169, 167173, 187193, 197203, 203209, 205211, 211217, 217223, 221227, 223229
Offset: 1

Views

Author

Patrick De Geest, May 15 1998

Keywords

Crossrefs

Extensions

Edited by Charles R Greathouse IV, Apr 28 2010
Showing 1-2 of 2 results.