A060254 Primes which are the sum of two consecutive composite numbers.
17, 19, 29, 31, 41, 43, 53, 67, 71, 79, 89, 97, 101, 103, 109, 113, 127, 131, 137, 139, 149, 151, 163, 173, 181, 191, 197, 199, 211, 223, 229, 233, 239, 241, 251, 257, 269, 271, 281, 283, 293, 307, 311, 317, 331, 337, 349, 353, 367, 373, 379, 389, 401, 409
Offset: 1
Keywords
Examples
The prime 19 is an entry since it is the sum of 9=3^2 and 10=2*5.
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
2Select[ Range[210], PrimeQ[ # ] == PrimeQ[ # + 1] == False && PrimeQ[2# + 1] == True &] + 1 Select[Total/@Partition[Select[Range[300],CompositeQ],2,1],PrimeQ] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jan 12 2019 *)
-
PARI
is(n)=!isprime(n\2) && !isprime(n\2+1) && isprime(n) \\ Charles R Greathouse IV, Apr 29 2015
Comments