OFFSET
1,1
COMMENTS
k is in the sequence iff the Goldbach representation of k as the sum of two odd primes does not contain any prime that is the lesser of a twin prime (A001359).
Conjecture: a(n) is congruent to 2 mod 6 with a(n)-3 not prime.
LINKS
Mahdi Meisami and Carlos Rivera, Puzzle 1040. Pair of consecutive even integers such that ..., The Prime Puzzles & Problems Connection.
FORMULA
a(n) = 6*A046953(n) + 2 (conjectured). - Hugo Pfoertner, Jun 09 2021
EXAMPLE
The Goldbach representations of 80 and 82 as the sum of two odd primes are:
{{73, 7}, {67, 13}, {61, 19}, {43, 37}} and {{79, 3}, {71, 11}, {59, 23}, {53, 29}, {41, 41}}. The two sets {7, 13, 19, 37, 43, 61, 67, 73} and {3, 11, 23, 29, 41, 53, 59, 71, 79} do not intersect, so 80 is a term of the sequence.
MATHEMATICA
Select[Range[6, 1000, 2], !IntersectingQ@@(Flatten@Select[IntegerPartitions[#, 2], And@@PrimeQ[#]&]&/@{#, #+2})&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Giorgos Kalogeropoulos, Jun 07 2021
STATUS
approved