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.

A254041 Number of decompositions of 2n into an unordered sum of two sexy primes.

Original entry on oeis.org

0, 0, 0, 0, 1, 1, 1, 1, 2, 1, 2, 3, 2, 2, 3, 1, 3, 4, 2, 2, 4, 2, 3, 5, 3, 3, 5, 2, 4, 6, 2, 4, 6, 2, 4, 6, 4, 3, 6, 4, 3, 7, 4, 3, 8, 3, 4, 7, 3, 4, 7, 4, 5, 7, 5, 5, 9, 5, 5, 12, 4, 4, 10, 3, 5, 7, 4, 5, 6, 5, 6, 8, 4, 5, 9, 2, 5, 8, 3, 5, 8, 4, 4, 9, 6, 4, 9
Offset: 1

Views

Author

Lei Zhou, Jan 23 2015

Keywords

Comments

"Sexy primes" are listed in A136207.
It is conjectured that a(n) > 0 for n > 4.

Examples

			When n = 79, 2n = 158 = 7 + 151 = 19 + 139 = 31 + 127 = 61 + 97 = 79 + 79 has five "two prime decompositions". Among the involved prime numbers 7, 19, 31, 61, 79, 97, 127, 139, 151, prime 127 and 139 are not sexy primes. So only three decompositions, 158 = 7 + 151 = 61 + 97 = 79 + 79 satisfy the definition of this sequence. Thus a(79) = 3.
		

Crossrefs

Programs

  • Mathematica
    Table[e = 2 n; ct = 0; p = 2; While[p = NextPrime[p]; p <= n, q = e - p; If[PrimeQ[q], If[(((p > 6) && PrimeQ[p - 6]) || PrimeQ[p + 6]) && (((q > 6) && PrimeQ[q - 6]) || PrimeQ[q + 6]), ct++]]]; ct, {n, 87}]