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.

A204805 Primes followed by a gap of 170 = nextprime(p)-p.

Original entry on oeis.org

27915737, 65069327, 80935103, 84549821, 98253527, 99099773, 105886883, 110597483, 117317297, 124956059, 130389293, 134944361, 139040903, 140217647, 140566253, 153207191, 156479129, 162973457, 182754569, 189599393, 190864901
Offset: 1

Views

Author

M. F. Hasler, Jan 19 2012

Keywords

Programs

  • Mathematica
    Transpose[Select[Partition[Prime[Range[11000000]],2,1],#[[2]]-#[[1]] == 170&]][[1]] (* Harvey P. Dale, Apr 25 2012 *)
  • PARI
    list_gaps(g=170,f,N=100)={my(p=0); for(c=1, N, while(g+p!=p=nextprime(p+1), ); if(f,write(f".txt",c" ",p-g),print1(", "p-g)))}