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.
%I A269329 #11 Aug 29 2017 03:22:23 %S A269329 0,0,0,0,0,0,1,1,1,1,2,1,2,1,1,2,4,2,2,2,2,2,3,3,3,2,4,2,4,3,2,2,4,3, %T A269329 3,4,4,1,3,3,5,4,4,3,6,3,4,5,4,4,6,3,5,5,3,3,6,3,3,6,3,2,7,5,7,6,5,2, %U A269329 6,5,4,6,4,4,8,5,7,7,5,4,8,4,4,8,7,4,7,4,7,9,4,4,10,4,5,7,6,3,9 %N A269329 Number of partitions of a positive integer n into two distinct primes such that for even n, it is of the form n = p + q and for odd n, it is of the form n = 2p' + q'. %C A269329 This sequence combines Levy's conjecture for odd positive numbers with the Goldbach conjecture for even positive numbers and strenghtens both by restricting the prime pairs to be distinct. I.e., every positive integer n > 6 is the sum of two distinct primes p and q such that for n even, it is of the form n = p + q and for n odd, it is of the form n = 2p' + q'. %e A269329 a(23)=3. Hence there are 3 partitions (as defined above) of the odd integer 23, namely 19+2+2, 17+3+3 and 13+5+5. a(24)=3. Hence there are 3 partitions of the even integer 24, namely 19+5, 17+7 and 13+11. %t A269329 parts[n_, a_, b_] := Select[IntegerPartitions[n, {a+b}, Prime@Range[PrimePi[n]]], Length[Union@#]==2&&MemberQ[Values@Counts@#, a] &]; lst1=Table[Length@parts[2n-1, 1, 2], {n, 1, 200}]; lst2=Table[Length@parts[2n, 1, 1], {n, 1, 200}]; Riffle[lst1, lst2] %Y A269329 Cf. A002375, A061357, A194830, A223893, A225522. %K A269329 nonn %O A269329 1,11 %A A269329 _Frank M Jackson_ and M. B. Rees, Feb 23 2016