cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A067188 Numbers that can be expressed as the (unordered) sum of two primes in exactly two ways.

This page as a plain text file.
%I A067188 #20 Apr 22 2025 14:07:30
%S A067188 10,14,16,18,20,28,32,38,68
%N A067188 Numbers that can be expressed as the (unordered) sum of two primes in exactly two ways.
%C A067188 Corresponds to numbers 2m such that A045917(m)=2. Subsequence of A014091. - _Lekraj Beedassy_, Apr 22 2004
%H A067188 <a href="/index/Go#Goldbach">Index entries for sequences related to Goldbach conjecture</a>
%e A067188 18 is a term as 18 = 13+5 = 11+7 are the only two ways to express 18 as a sum of two primes.
%t A067188 y = Select[Flatten@Table[Prime[i] + Prime[j], {i, 100}, {j, 1, i}], # < Prime[100] &]; Select[Union[y], Count[y, #] == 2 &] (* _Robert Price_, Apr 22 2025 *)
%Y A067188 Cf. A023036.
%Y A067188 Numbers that can be expressed as the sum of two primes in k ways for k=0..10: A014092 (k=0), A067187 (k=1), this sequence (k=2), A067189 (k=3), A067190 (k=4), A067191 (k=5), A066722 (k=6), A352229 (k=7), A352230 (k=8), A352231 (k=9), A352233 (k=10).
%K A067188 nonn,fini,full
%O A067188 1,1
%A A067188 _Amarnath Murthy_, Jan 10 2002
%E A067188 Corrected by Peter Bertok (peter(AT)bertok.com), who finds (Jan 13 2002) that there are no other terms below 10000 and conjectures there are no further terms in this sequence and A067189, A067190, etc.
%E A067188 _R. K. Guy_ (Jan 14 2002) remarks: "I believe that these conjectures follow from a more general one by Hardy & Littlewood (probably in Some problems of 'partitio numerorum' III, on the expression of a number as a sum of primes, Acta Math. 44(1922) 1-70)."