A172072 Numbers k such that either prime(k) - 5/2 +- 7/2 is prime.
1, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 17, 19, 21, 22, 24, 27, 28, 29, 30, 33, 37, 38, 40, 41, 45, 46, 50, 51, 52, 55, 56, 57, 59, 61, 65, 66, 68, 71, 72, 74, 75, 77, 85, 87, 90, 91, 97, 101, 103, 104, 106, 108, 109, 111, 112, 114, 118, 119, 120, 124, 130, 131, 134, 144
Offset: 1
Keywords
Examples
a(1) = 1 because prime(1)-5/2-7/2 = 2-5/2-7/2 = -4 (nonprime) and prime(1)-5/2+7/2 = 2-5/2+7/2 = 3 (prime).
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Join[{1}, Select[Range[5, 150], PrimeQ[Prime[#] - 6] &]] (* Paolo Xausa, Aug 17 2025 *)
-
PARI
is(n,p=prime(n))=isprime(p-6) || isprime(p+1) \\ Charles R Greathouse IV, Jun 13 2017
-
Python
from sympy import isprime, prime def ok(n): return n == 1 or isprime(prime(n)-6) print([k for k in range(1, 145) if ok(k)]) # Michael S. Branicky, Aug 16 2025
Extensions
Corrected (57 inserted) by R. J. Mathar, May 02 2010
Comments