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.

A013633 nextprime(n) - prevprime(n).

Original entry on oeis.org

3, 2, 4, 2, 6, 4, 4, 4, 6, 2, 6, 4, 4, 4, 6, 2, 6, 4, 4, 4, 10, 6, 6, 6, 6, 6, 8, 2, 8, 6, 6, 6, 6, 6, 10, 4, 4, 4, 6, 2, 6, 4, 4, 4, 10, 6, 6, 6, 6, 6, 12, 6, 6, 6, 6, 6, 8, 2, 8, 6, 6, 6, 6, 6, 10, 4, 4, 4, 6, 2, 8, 6, 6, 6, 6, 6, 10, 4, 4
Offset: 3

Views

Author

Keywords

Examples

			a(3) = nextprime(3) - prevprime(3) = 5 - 2 = 3: This shows that here the variants 2 (A151800 and A151799) of the nextprime and precprime functions are used, rather than the variants A007918 and A007917. - _M. F. Hasler_, Sep 09 2015
		

Crossrefs

Programs

  • Maple
    [ seq(nextprime(i)-prevprime(i),i=3..100) ];
  • PARI
    A013633(n)=nextprime(n+1)-precprime(n-1) \\ M. F. Hasler, Sep 09 2015

Formula

a(n) = A151800(n) - A151799(n) = A007918(n+1) - A007917(n-1). - M. F. Hasler, Sep 09 2015