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.

A226949 Number of twin prime pairs of the form k*n +/- 1 with k <= n.

Original entry on oeis.org

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

Views

Author

Irina Gerasimova, Jun 23 2013

Keywords

Examples

			a(4) = 2 because there are two twin prime pairs of the form (4k - 1,4k + 1) with 1 <= k <= 4, namely (3, 5) for k = 1 and (11, 13) for k = 3.
		

Crossrefs

Programs

  • Mathematica
    a[n_] := Sum[Boole[PrimeQ[k*n - 1] && PrimeQ[k*n + 1]], {k, 1, n}]; Array[a, 100] (* Amiram Eldar, Dec 25 2019 *)
  • PARI
    a(n)=sum(k=1,n,isprime(k*n-1)&&isprime(k*n+1)) \\ Charles R Greathouse IV, Jun 27 2013

Extensions

a(7), a(20), a(36) corrected by Charles R Greathouse IV, Jun 27 2013
a(54)-a(90) from Charles R Greathouse IV, Jun 27 2013