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.

A271981 Primes p such that p + 40 is also prime.

Original entry on oeis.org

3, 7, 13, 19, 31, 43, 61, 67, 73, 97, 109, 127, 139, 151, 157, 193, 199, 211, 223, 229, 241, 271, 277, 307, 313, 349, 379, 409, 421, 439, 463, 523, 547, 577, 601, 607, 613, 619, 643, 661, 733, 757, 769, 787, 823, 907, 937, 991, 1009, 1021, 1051, 1063, 1069
Offset: 1

Views

Author

Karl V. Keller, Jr., Apr 17 2016

Keywords

Comments

A126721 is a subsequence of this sequence.

Examples

			3 is a term since 3 + 40 = 43 is also prime.
7 is a term since 7 + 40 = 47 is also prime.
		

Crossrefs

Programs

  • Maple
    q:= n-> andmap(isprime, [n, n+40]):
    select(q, [$2..2000])[];  # Alois P. Heinz, Jul 21 2022
  • Mathematica
    Select[Prime@ Range@ 180, PrimeQ[# + 40] &] (* Michael De Vlieger, Apr 18 2016 *)
  • PARI
    lista(nn) = forprime(p=2, nn, if (isprime(p+40), print1(p, ", "))); \\ Michel Marcus, Apr 19 2016
  • Python
    from sympy import isprime
    for i in range(3, 2001,2):
         if isprime(i) and isprime(i+40): print (i,end=', ')