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.

A327760 Primes in Rob Gahan's arithmetic progression of 27 primes.

Original entry on oeis.org

224584605939537911, 242720302537486841, 260855999135435771, 278991695733384701, 297127392331333631, 315263088929282561, 333398785527231491, 351534482125180421, 369670178723129351, 387805875321078281, 405941571919027211, 424077268516976141, 442212965114925071
Offset: 1

Views

Author

Felix Fröhlich, Sep 25 2019

Keywords

Comments

This arithmetic progression of 27 primes (AP27) was discovered by Rob Gahan on 23 September 2019 as part of PrimeGrid's AP27 Search subproject (cf. Goetz, 2019).

Crossrefs

Programs

  • Mathematica
    A327760[n_] := 224584605939537911 + (n-1)*18135696597948930;
    Array[A327760, 27] (* Paolo Xausa, Jan 30 2024 *)
  • PARI
    vector(27, t, 224584605939537911+81292139*223092870*(t-1))