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.

A224470 Numbers k such that 7^k - k is prime.

Original entry on oeis.org

2, 6, 8, 12, 44, 48, 512, 1088, 1104, 6038
Offset: 1

Views

Author

Alex Ratushnyak, Apr 06 2013

Keywords

Comments

a(11) > 92000. - Giovanni Resta, Apr 08 2013
a(11) > 2*10^5. - Robert Price, Feb 11 2014

Crossrefs

Programs

  • PARI
    forstep(n=2,10^4,2,if(ispseudoprime(7^n-n),print1(n,", "))); /* Joerg Arndt, Apr 07 2013 */