A097338 Positive integers n such that 2n-11 is prime.
7, 8, 9, 11, 12, 14, 15, 17, 20, 21, 24, 26, 27, 29, 32, 35, 36, 39, 41, 42, 45, 47, 50, 54, 56, 57, 59, 60, 62, 69, 71, 74, 75, 80, 81, 84, 87, 89, 92, 95, 96, 101, 102, 104, 105, 111, 117, 119, 120, 122, 125, 126, 131, 134, 137, 140, 141, 144, 146, 147, 152, 159, 161
Offset: 1
Links
- Shawn A. Broyles, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Mathematica
(Prime[Range[2,100]]+11)/2 (* Vladimir Joseph Stephan Orlovsky, Feb 08 2010 *) Select[Range[6,200],PrimeQ[2#-11]&] (* Harvey P. Dale, May 24 2014 *)
-
PARI
is(n)=isprime(2*n-11) \\ Charles R Greathouse IV, Jul 12 2016
Formula
Half of p+11 where p is a prime greater than 2.