A352230 Numbers that can be expressed as the sum of two primes in exactly 8 ways.
84, 102, 108, 138, 142, 154, 160, 184, 190, 200, 214, 242, 256, 266, 284, 292, 296, 308, 362, 368
Offset: 1
Examples
84 = 5+79 = 11+73 = 13+71 = 17+67 = 23+61 = 31+53 = 37+47 = 41+43.
Crossrefs
Programs
-
Mathematica
c[n_] := Count[IntegerPartitions[n, {2}], ?(And @@ PrimeQ[#] &)]; Select[Range[1000], c[#] == 8 &] (* _Amiram Eldar, Mar 08 2022 *)