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.

A094479 Primes of the form p^4 + 16 where p is also a prime.

Original entry on oeis.org

97, 641, 2417, 14657, 83537, 130337, 279857, 1874177, 2825777, 12117377, 13845857, 25411697, 38950097, 88529297, 294499937, 373301057, 1026625697, 2472973457, 2655237857, 2750058497, 3373402577, 6414247937, 9597924977
Offset: 1

Views

Author

Labos Elemer, Jun 01 2004

Keywords

Comments

p is in A158361. - Zak Seidov, Jul 08 2020

Crossrefs

Cf. A158361.

Programs

  • Magma
    [a: p in PrimesUpTo(400) | IsPrime(a) where a is p^4+16]; // Vincenzo Librandi, Jun 18 2014
  • Mathematica
    Select[Table[p^4+16,{p,Prime[Range[80]]}],PrimeQ] (* Harvey P. Dale, Jun 17 2014 *)