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.

A263874 Integers for which the smallest k in A067760 such that n + 2^k is prime increases.

Original entry on oeis.org

1, 7, 23, 31, 47, 61, 139, 271, 287, 773, 2131, 40291
Offset: 1

Views

Author

Arkadiusz Wesolowski, Oct 28 2015

Keywords

Crossrefs

A263875 gives the record values.

Programs

  • PARI
    a=1; forstep(n=1, 773, 2, k=1; while(!ispseudoprime(n+2^k), k++); if(k+1>a, print1(n, ", "); a=k+1));