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.

Showing 1-1 of 1 results.

A301635 Numbers k such that 5^k + 5*k + 1 is prime.

Original entry on oeis.org

0, 1, 11, 25, 35, 85, 499, 1403, 3511, 3739, 8005
Offset: 1

Views

Author

Seiichi Manyama, Mar 25 2018

Keywords

Comments

a(12), if it exists, is greater than 20000. - Vaclav Kotesovec, Mar 25 2018
a(12), if it exists, is greater than 80000. - Michael S. Branicky, Sep 03 2024

Crossrefs

A301638 gives the primes.

Programs

  • Mathematica
    Flatten[{0, Select[Range[1000], PrimeQ[5^# + 5*# + 1] &]}] (* Vaclav Kotesovec, Mar 25 2018 *)
  • PARI
    for(n=0, 500, if(isprime(5^n+5*n+1), print1(n", ")))

Extensions

a(8)-a(11) from Vaclav Kotesovec, Mar 25 2018
Showing 1-1 of 1 results.