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.

A182345 Primes of the form n^4 + 5.

Original entry on oeis.org

5, 1301, 331781, 18974741, 37015061, 136048901, 429981701, 1196883221, 1731891461, 4032758021, 4430766101, 12745506821, 13680577301, 43237380101, 74247530261, 92844527621, 151613669381, 196741925141
Offset: 1

Views

Author

Patrick Devlin, Apr 25 2012

Keywords

Comments

All terms == 5 (mod 24). All terms except the first == 101 mod 120. - Robert Israel, Jul 01 2019

Examples

			5 = 1^4 + 5; 1301 = 6^4 + 5.
		

Crossrefs

Cf. A037896.

Programs

  • Maple
    # choose N large, then S is the desired set
    f:=n->n^4 + 5:
    S:={}:
    for n from 0 to N do if(isprime(f(n))) then S:=S union {f(n)}: fi: od: