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.

A032622 Numbers k such that k concatenated with k+7 is a prime.

Original entry on oeis.org

2, 6, 20, 26, 30, 36, 44, 60, 62, 66, 74, 80, 86, 1004, 1034, 1046, 1086, 1094, 1104, 1136, 1142, 1194, 1200, 1206, 1214, 1224, 1250, 1262, 1266, 1290, 1292, 1296, 1320, 1326, 1332, 1346, 1350, 1352, 1356, 1364, 1370, 1380, 1404, 1416, 1434, 1472, 1496
Offset: 1

Views

Author

Patrick De Geest, May 15 1998

Keywords

Crossrefs

Cf. A032612.

Programs

  • Maple
    filter:= n -> isprime(n * 10^(1+ilog10(n+7)) + n + 7):
    select(filter, [seq(i,i=2..10000,2)]); # Robert Israel, May 13 2025

A032630 Primes that are concatenations of n with n + 7.

Original entry on oeis.org

29, 613, 2027, 2633, 3037, 3643, 4451, 6067, 6269, 6673, 7481, 8087, 8693, 10041011, 10341041, 10461053, 10861093, 10941101, 11041111, 11361143, 11421149, 11941201, 12001207, 12061213, 12141221, 12241231, 12501257
Offset: 1

Views

Author

Patrick De Geest, May 15 1998

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Table[FromDigits[Join[IntegerDigits[n],IntegerDigits[n+7]]],{n,1500}],PrimeQ] (* Harvey P. Dale, Sep 20 2016 *)

Extensions

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