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.

A240113 Integers for which the smallest m in A040081 such that n*2^m - 1 is prime (A038699) increases.

Original entry on oeis.org

1, 13, 23, 43, 59, 88, 127, 148, 659
Offset: 1

Views

Author

Arkadiusz Wesolowski, Apr 01 2014

Keywords

Comments

Where records occur in A040081. A103963 gives the record values.
The next candidate is 2293.

Crossrefs

Programs

  • PARI
    a=0; for(n=1, 148, m=0; while(!ispseudoprime(n*2^m-1), m++); if(m>a, a=m; print1(n, ", ")));