A352231 Numbers that can be expressed as the sum of two primes in exactly 9 ways.
90, 132, 170, 196, 202, 220, 230, 236, 238, 244, 250, 254, 262, 268, 302, 314, 338, 346, 356, 388, 428, 458, 488
Offset: 1
Examples
90 = 7+83 = 11+79 = 17+73 = 19+71 = 23+67 = 29+61 = 31+59 = 37+53 = 43+47.
Crossrefs
Programs
-
Mathematica
c[n_] := Count[IntegerPartitions[n, {2}], ?(And @@ PrimeQ[#] &)]; Select[Range[1000], c[#] == 9 &] (* _Amiram Eldar, Mar 08 2022 *)
Formula
A061358(a(n)) = 9. - Alois P. Heinz, Mar 08 2022