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.

A191617 Least number a such that (2^n+a)*2^n + 1 is a prime number.

Original entry on oeis.org

0, 0, 1, 0, 4, 3, 12, 0, 1, 3, 6, 6, 16, 9, 4, 5, 3, 20, 6, 5, 4, 5, 21, 9, 16, 35, 6, 6, 18, 8, 28, 6, 46, 11, 39, 6, 3, 20, 22, 47, 93, 90, 13, 51, 27, 98, 34, 6, 12, 14, 21, 21, 49, 143, 18, 5, 58, 30, 37, 30, 6, 56, 16, 150, 72, 59, 12, 5, 34, 3, 28, 45
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 *)