A352233 Numbers that can be expressed as the sum of two primes in exactly 10 ways.
114, 126, 162, 260, 290, 304, 316, 328, 344, 352, 358, 374, 382, 416, 542, 632
Offset: 1
Examples
114 = 5+109 = 7+107 = 11+103 = 13+101 = 17+97 = 31+83 = 41+73 = 43+71 = 47+67 = 53+61.
Links
- G. H. Hardy and J. E. Littlewood, Some problems of 'Partitio numerorum'; III: On the expression of a number as a sum of primes, Acta Mathematica, volume 44, pages 1-70 (1923).
Crossrefs
Programs
-
Mathematica
c[n_] := Count[IntegerPartitions[n, {2}], ?(And @@ PrimeQ[#] &)]; Select[Range[1000], c[#] == 10 &] (* _Amiram Eldar, Mar 08 2022 *)
Comments