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.

A084670 Numbers k such that concatenation of prime(k) and k is prime.

Original entry on oeis.org

3, 9, 19, 21, 37, 63, 77, 81, 87, 107, 121, 133, 177, 201, 211, 213, 217, 281, 293, 303, 321, 327, 329, 333, 351, 391, 393, 439, 481, 503, 507, 519, 543, 547, 551, 561, 579, 581, 599, 621, 639, 657, 663, 667, 711, 721, 727, 743, 793, 813, 819, 827, 829, 831, 837
Offset: 1

Views

Author

Zak Seidov, Jun 29 2003

Keywords

Examples

			9 is a term because prime(9) = 23 and concatenation of 23 and 9 is prime
		

Crossrefs

Programs

  • Mathematica
    Select[Range[1000],PrimeQ[Prime[#]10^IntegerLength[#]+#]&] (* Harvey P. Dale, Apr 09 2022 *)
  • PARI
    is(k) = ispseudoprime(eval(Str(prime(k), k))); \\ Jinyuan Wang, Apr 10 2020
    
  • Python
    from sympy import isprime, prime
    def aupto(lim):
      return [k for k in range(1, lim+1) if isprime(int(str(prime(k))+str(k)))]
    print(aupto(837)) # Michael S. Branicky, Mar 09 2021

Extensions

More terms from Jinyuan Wang, Apr 10 2020