OFFSET
1,1
COMMENTS
All terms are even. Conjecture: 632 is the last term. Hardy and Littlewood conjectured a grow rate of the number of decompositions for large even numbers (see Conjecture A in page 32 of Hardy and Littlewood reference), implying this sequence is finite. - Chai Wah Wu, Mar 10 2022
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).
EXAMPLE
114 = 5+109 = 7+107 = 11+103 = 13+101 = 17+97 = 31+83 = 41+73 = 43+71 = 47+67 = 53+61.
MATHEMATICA
c[n_] := Count[IntegerPartitions[n, {2}], _?(And @@ PrimeQ[#] &)]; Select[Range[1000], c[#] == 10 &] (* Amiram Eldar, Mar 08 2022 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Wesley Ivan Hurt, Mar 08 2022
STATUS
approved