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.

A207837 Primes of the form 5*k^4 + 1.

Original entry on oeis.org

6481, 103681, 844480081, 1036800001, 55099802881, 63727534081, 115672050001, 155584800001, 307529920081, 322620641281, 425152800001, 1019640545281, 1633266996481, 1739461754881, 2489356800001, 2634683086081, 2944329626881, 5285935072081, 6360160441681
Offset: 1

Views

Author

Bruno Berselli, Feb 21 2012

Keywords

Comments

Also primes of the form 6480*k^4+1.

Crossrefs

Cf. A207838 (values of k).
Subsequence of A137530.
Primes of the form k*n^(k-1)+1: A065091, A002648, A199307.

Programs

  • Magma
    [6480*n^4+1: n in [1..181] | IsPrime(6480*n^4+1)];
  • Mathematica
    Select[5 Range[1086]^4 + 1, PrimeQ] (* by definition *)
  • PARI
    for(n=1, 181, r=6480*n^4+1; if(isprime(r), print1(r", ")));
    

Formula

a(n) = 5*A207838(n)^4 + 1. - Paul F. Marrero Romero, Dec 07 2023
Showing 1-1 of 1 results.