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.

A116495 Numbers k such that difference between k-th prime and next prime is 210.

Original entry on oeis.org

1319945, 5240989, 9223725, 9359659, 12606992, 13798935, 16163072, 17559961, 18805047, 18973547, 20278475, 22091310, 22358431, 24253281, 25377875, 26813808, 28784698, 29308594, 29819740, 29867343, 30573917, 30838655
Offset: 1

Views

Author

Zak Seidov, Feb 18 2006

Keywords

Examples

			p(1319946) - p(1319945) = 20831533 - 20831323 = 210.
		

Crossrefs

Programs

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