login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A231903
Even numbers which are the sum of two different primes > 3 in exactly one way.
0
12, 16, 20, 22, 26, 32, 38, 62
OFFSET
1,1
COMMENTS
Conjecture: there are no more numbers > 62 in the sequence.
Remark that the two primes are one of a twin primes pair and a pair of twin primes for 12=5+7.
The pairs of primes are : 12=5+7, 16=5+11, 20=7+13, 22=5+17, 26=7+19, 32=13+19, 38=7+31, 62=19+43.
EXAMPLE
10=3+7=5+5 not in the sequence (not >3 or not different),
12=5+7, 12 first in the sequence,
14=3+11=7+7 not in the sequence.
PROG
(PARI) is_A231903(n)={my(s=0); forprime(p=5, n\2-1, isprime(n-p)&&s++>1&&return); s} \\ - M. F. Hasler, Nov 22 2013
CROSSREFS
Sequence in context: A171955 A225071 A210577 * A364405 A337703 A337700
KEYWORD
nonn
AUTHOR
Pierre CAMI, Nov 15 2013
EXTENSIONS
Missing term a(7)=38 added by M. F. Hasler, Nov 22 2013
STATUS
approved