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.

A116497 Indices n such that the difference between the n-th prime and the next larger prime is 200.

Original entry on oeis.org

20226285, 23169912, 25441017, 26172843, 27841352, 29657240, 30714253, 31998495, 33419255, 36637876, 37995065, 38182448, 38758272, 39019864, 40022755, 40296600, 40339473, 40985817, 41293073, 42116899, 45474429
Offset: 1

Views

Author

Zak Seidov, Feb 18 2006

Keywords

Examples

			p(20226286) - p(20226285) = 378044179 - 378043979 = 200.
		

Crossrefs

The actual primes are given in A204807. - M. F. Hasler, Jan 19 2012
See also A052187 and references therein.

Programs

  • PARI
    lista(nn) = {my(i=0, q=2); forprime(p=3, nn, i++; if(p-q==200, print1(i, ", ")); q=p); } \\ Jinyuan Wang, Jan 29 2020

Formula

A204807(n) = prime(a(n)). - M. F. Hasler, Jan 19 2012