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.

A352230 Numbers that can be expressed as the sum of two primes in exactly 8 ways.

This page as a plain text file.
%I A352230 #9 Mar 10 2022 10:27:34
%S A352230 84,102,108,138,142,154,160,184,190,200,214,242,256,266,284,292,296,
%T A352230 308,362,368
%N A352230 Numbers that can be expressed as the sum of two primes in exactly 8 ways.
%e A352230 84 = 5+79 = 11+73 = 13+71 = 17+67 = 23+61 = 31+53 = 37+47 = 41+43.
%t A352230 c[n_] := Count[IntegerPartitions[n, {2}], _?(And @@ PrimeQ[#] &)]; Select[Range[1000], c[#] == 8 &] (* _Amiram Eldar_, Mar 08 2022 *)
%Y A352230 Numbers that can be expressed as the sum of two primes in k ways for k=0..10: A014092 (k=0), A067187 (k=1), A067188 (k=2), A067189 (k=3), A067190 (k=4), A067191 (k=5), A066722 (k=6), A352229 (k=7), this sequence (k=8), A352231 (k=9), A352233 (k=10).
%K A352230 nonn,more
%O A352230 1,1
%A A352230 _Wesley Ivan Hurt_, Mar 08 2022