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.

A301520 Numbers k such that 4*k^k + 3 is prime.

Original entry on oeis.org

0, 1, 2, 5, 10, 44, 65, 1424
Offset: 1

Views

Author

Seiichi Manyama, Mar 23 2018

Keywords

Comments

Next term, if it exists, is greater than 5000. - Vaclav Kotesovec, Mar 25 2018
Next term, if it exists, is greater than 25000. - Robert Price, Apr 22 2019

Crossrefs

Programs

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

Extensions

a(8) from Vaclav Kotesovec, Mar 25 2018