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.

Showing 1-2 of 2 results.

A322006 a(n) = number of primes of the form p = n - q, where q is a prime or semiprime.

Original entry on oeis.org

0, 0, 0, 0, 1, 2, 2, 3, 3, 4, 3, 3, 4, 4, 4, 4, 6, 5, 5, 4, 6, 5, 7, 4, 8, 5, 8, 5, 9, 4, 7, 4, 8, 7, 9, 4, 11, 5, 9, 6, 11, 6, 11, 6, 11, 8, 12, 4, 13, 6, 12, 8, 13, 6, 14, 5, 13, 8, 13, 4, 16, 5, 15, 9, 16, 7, 16, 6, 14, 9, 16, 5, 18, 6, 16, 10, 19, 7, 19, 6, 17, 10, 18, 4, 21, 9, 17, 9, 19, 8
Offset: 0

Views

Author

M. F. Hasler, Jan 06 2019

Keywords

Comments

Related to Chen's theorem (Chen 1966, 1973) which states that every sufficiently large even number is the sum of a prime and another prime or semiprime. Yamada (2015) has proved that this holds for all even numbers larger than exp(exp(36)).
In terms of this sequence, Chen's theorem with Yamada's bound is equivalent to say that a(2*n) > 0 for all n > 1.7 * 10^1872344071119348 (exponent ~ 1.8*10^15).
Sequence A322007(n) = a(2n) lists the bisection corresponding to even numbers only.
A235645 lists the number of decompositions of 2n into a prime p and a prime or semiprime q; this is less than a(2n) because p + q and q + p is the same decomposition (if q is a prime), but this sequence will count the two distinct primes 2n - q and 2n - p (if q <> p).

Examples

			a(4) = 1 is the first nonzero term corresponding to 4 = 2 + 2 or, rather, to the prime 2 = 4 - 2.
a(5) = 2 because the primes 2 = 5 - 3 and 3 = 5 - 2 are of the required form n - q where q = 3 resp. q = 2 are primes.
a(6) = 2 because the primes 2 = 6 - 4 and 3 = 6 - 3 are of the required form n - q, since q = 4 is a semiprime and q = 3 is a prime.
		

References

  • Chen, J. R. (1966). "On the representation of a large even integer as the sum of a prime and the product of at most two primes". Kexue Tongbao. 11 (9): 385-386.
  • Chen, J. R. (1973). "On the representation of a larger even integer as the sum of a prime and the product of at most two primes". Sci. Sinica. 16: 157-176.

Crossrefs

Programs

  • PARI
    A322006(n,s=0)={forprime(p=2,n-2,bigomega(n-p)<3&&s++);s}

A322007 a(n) = number of primes of the form p = 2n - q, where q is a prime or semiprime.

Original entry on oeis.org

0, 0, 1, 2, 3, 3, 4, 4, 6, 5, 6, 7, 8, 8, 9, 7, 8, 9, 11, 9, 11, 11, 11, 12, 13, 12, 13, 14, 13, 13, 16, 15, 16, 16, 14, 16, 18, 16, 19, 19, 17, 18, 21, 17, 19, 22, 19, 19, 24, 19, 21, 23, 20, 21, 26, 22, 23, 28, 23, 24, 29, 23, 24, 29, 21, 25, 29, 24, 25, 29, 27, 25, 33, 26, 27, 32, 27
Offset: 0

Views

Author

M. F. Hasler, Jan 06 2019

Keywords

Comments

Related to Chen's theorem (Chen 1966, 1973) which states that every sufficiently large even number is the sum of a prime and another prime or semiprime. Yamada (2015) has proved that this holds for all even numbers larger than exp(exp(36)).
In terms of this sequence, Chen's theorem with Yamada's bound is equivalent to say that a(n) > 0 for all n > 1.7 * 10^1872344071119348 (exponent ~ 1.8*10^15).
A235645 lists the number of decompositions of 2n into a prime p and a prime or semiprime q; this is less than a(n) because p + q and q + p is the same decomposition (if q is a prime), but this sequence will count two distinct primes 2n - q and 2n - p (if q <> p).
Sequence A322006 lists the same for even and odd numbers n, not only for even numbers 2n.

Examples

			a(4) = 2 since for n = 4, 2n = 8 = 2 + 6 = 3 + 5 = 5 + 3, i.e., primes 2, 3 and 5 are of the form specified in the definition (since 6 = 2*3 is a semiprime and 5 and 3 are primes).
		

References

  • Chen, J. R. (1966). "On the representation of a large even integer as the sum of a prime and the product of at most two primes". Kexue Tongbao. 11 (9): 385-386.
  • Chen, J. R. (1973). "On the representation of a larger even integer as the sum of a prime and the product of at most two primes". Sci. Sinica. 16: 157-176.

Crossrefs

Programs

  • PARI
    A322007(n,s=0)={forprime(p=2,-2+n*=2,bigomega(n-p)<3&&s++);s}

Formula

a(n) = A322006(2n).
Showing 1-2 of 2 results.