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.

A212557 Primes p such that (p, p-9) is an irregular pair.

Original entry on oeis.org

67, 877
Offset: 1

Views

Author

Felix Fröhlich, May 21 2012

Keywords

Comments

No further terms found up to 163577833 in extended tables (see Buhler link). - Michel Marcus, Apr 17 2014

Crossrefs

Special instances of A000928. Variant of A088164 (for the terms of A088164, (p, p-3) is an irregular pair).

Programs

  • PARI
    is(n)=lift(Mod(numerator(bernfrac(n-9)), n)==0)
    forprime(p=8, , if(is(p), print1(p, ", "))) \\ Felix Fröhlich, Jan 19 2015