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.

A301524 Numbers k such that 16*k^k - 1 is prime.

Original entry on oeis.org

3, 5, 15, 27
Offset: 1

Views

Author

Seiichi Manyama, Mar 23 2018

Keywords

Comments

All terms are odd since 16*(2*m)^(2*m) - 1 = (2^(m+2)*m^m - 1)*(2^(m+2)*m^m + 1). - Altug Alkan, Mar 23 2018
a(5), if it exists, is greater than 5000. - Vaclav Kotesovec, Mar 25 2018
a(5), if it exists, is greater than 20000. - Michael S. Branicky, Sep 03 2024

Crossrefs

Programs

  • Mathematica
    Select[Range[1000], PrimeQ[16*#^# - 1] &] (* Vaclav Kotesovec, Mar 25 2018 *)
  • PARI
    for(n=0, 1000, if(isprime(16*n^n-1), print1(n", ")))