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.

A216424 Numbers k such that 4^k + k^4 - 1 is prime.

Original entry on oeis.org

2, 16, 74, 164, 518, 796, 8756, 12598
Offset: 1

Views

Author

Vincenzo Librandi, Sep 07 2012

Keywords

Comments

a(9) > 10^5. - Robert Price, Feb 04 2014

Crossrefs

Programs

  • Magma
    [n: n in [0..800] | IsPrime(4^n+n^4-1)];
    
  • Mathematica
    Select[Range[0, 5000], PrimeQ[4^# + #^4 - 1] &]
  • PARI
    is(n)=ispseudoprime(4^n+n^4-1) \\ Charles R Greathouse IV, Jun 13 2017

Extensions

a(7)-a(8) from Robert Price, Feb 04 2014