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.

A100923 a(n) = 1 iff 6*n+1 and 6*n-1 are both prime numbers (0 otherwise).

Original entry on oeis.org

1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0
Offset: 1

Views

Author

Joseph Biberstine (jrbibers(AT)indiana.edu), Nov 22 2004

Keywords

Comments

Characteristic function of A002822. - Georg Fischer, Aug 04 2021

Examples

			a(3) = 1 because 6*3-1=17 and 6*3+1=19 are both prime.
a(4) = 0 because 6*4-1=23 is prime and 6*4+1=25 is not prime.
a(20) = 0 because 6*20-1=119 and 6*20+1=121 are both not prime.
		

Crossrefs

Programs

  • Mathematica
    Table[If[And[PrimeQ[6*k - 1], PrimeQ[6*k + 1]], 1, 0], {k, 1, 110}]