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.

A126771 Primes p such that q-p = 60, where q is the next prime after p.

Original entry on oeis.org

43331, 102701, 110359, 124367, 142993, 149629, 156157, 189067, 191353, 195599, 203057, 204173, 220063, 227303, 231719, 233777, 243709, 256219, 268343, 269791, 296377, 308153, 311473, 323273, 329803, 343831, 361577, 390893, 402631, 404713
Offset: 1

Views

Author

Rémi Eismann, Feb 17 2007

Keywords

Programs

  • Mathematica
    a = {}; Do[If[Prime[x + 1] - Prime[x] == 60, AppendTo[a, Prime[x]]], {x, 1, 10000}]; a
  • PARI
    g=60;c=o=0;forprime(p=1,default(primelimit),(-o+o=p)==g&write("c:/temp/b126771.txt",c++" "p-g))