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.

A235645 From Goldbach's conjecture and Chen's theorem: number of decompositions of 2n as the sum of either two primes, or a prime and a semiprime.

Original entry on oeis.org

0, 1, 1, 1, 2, 1, 2, 2, 2, 2, 3, 3, 3, 2, 3, 3, 5, 4, 3, 3, 4, 5, 5, 5, 5, 5, 5, 4, 6, 6, 5, 6, 6, 4, 6, 7, 8, 8, 8, 7, 9, 8, 8, 7, 9, 8, 9, 8, 6, 9, 9, 10, 10, 9, 9, 12, 12, 11, 13, 12, 10, 11, 11, 9, 12, 11, 12, 11, 11, 12, 15, 14, 12, 12, 12
Offset: 1

Views

Author

Jean-François Alcover, Jan 13 2014

Keywords

Comments

The first 15 terms from this sequence and from A045917 are identical.

Examples

			40 = 23+17 = 29+11 = 37+3, so a(20) = 3.
Compare with 40 = 23+17 = 29+11 = 31+9 = 37+3 and A045917(20) = 4.
		

Crossrefs

Programs

  • Mathematica
    a[n_] := Count[IntegerPartitions[2*n, {2}], {p_, q_} /; PrimeQ[p] && (PrimeQ[q] || Length[FactorInteger[q]] == 2)]; Table[a[n], {n, 1, 100}]