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.

A057908 Numbers n such that 4^n - n is prime.

Original entry on oeis.org

1, 3, 5, 35, 95, 1323, 24747
Offset: 1

Views

Author

Robert G. Wilson v, Nov 16 2000

Keywords

Comments

a(8) > 2*10^5. - Robert Price, Feb 11 2014

Programs

  • Mathematica
    Do[ If[ PrimeQ[ 4^n - n ], Print[ n ] ], {n, 0, 3000} ]
  • PARI
    for(k=1,10^6,if(ispseudoprime(4^k-k),print1(k,", "))); /* Joerg Arndt, Apr 07 2013 */

Extensions

a(7) from Robert Price, Feb 11 2014