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.

A191618 Least a such that (2^n+a)*2^n - 1 is prime.

Original entry on oeis.org

0, 1, 1, 1, 2, 1, 11, 2, 2, 1, 13, 2, 4, 22, 2, 1, 2, 2, 43, 4, 2, 13, 2, 1, 13, 1, 2, 46, 8, 29, 83, 2, 8, 34, 1, 11, 19, 31, 25, 7, 38, 31, 31, 76, 52, 31, 43, 32, 13, 92, 2, 1, 59, 22, 1, 16, 19, 11, 16, 74, 8, 13, 8, 74, 2, 121, 20, 49, 85, 134, 116, 16
Offset: 1

Views

Author

Pierre CAMI, Jun 09 2011

Keywords

Crossrefs

Programs

  • Mathematica
    Table[a = 0; While[! PrimeQ[(2^n + a)*2^n - 1], a++]; a, {n, 100}] (* T. D. Noe, Jun 11 2011 *)