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.

A174392 Neither n-1 nor n+1 is prime.

Original entry on oeis.org

0, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 26, 27, 29, 31, 33, 34, 35, 37, 39, 41, 43, 45, 47, 49, 50, 51, 53, 55, 56, 57, 59, 61, 63, 64, 65, 67, 69, 71, 73, 75, 76, 77, 79, 81, 83, 85, 86, 87, 89, 91, 92, 93, 94, 95, 97, 99, 101, 103, 105, 107, 109, 111, 113, 115, 116, 117, 118
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Mar 18 2010

Keywords

Comments

Union of {0} and A099047. [R. J. Mathar, Aug 09 2010]

Examples

			a(1)=0 because 0-1=-1 and 0+1=1 are nonprime; a(2)=5 because 5-1=4 and 5+1=6 are nonprime.
		

Crossrefs

Cf. A099047.

Programs

  • Mathematica
    Select[Range[0,150],!PrimeQ[#-1]&&!PrimeQ[#+1]&] (* Harvey P. Dale, Aug 15 2012 *)
    Join[{0},Mean/@SequencePosition[Table[If[PrimeQ[n],0,1],{n,200}],{1,x_,1}]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Nov 17 2019 *)

Extensions

Corrected by Charles R Greathouse IV, Mar 18 2010
Incorrect comment removed by Lambert Meertens, Sep 11 2024