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.

A117705 Numbers n such that 5^n-n^5 is prime.

Original entry on oeis.org

2, 14, 26, 4646, 68484
Offset: 1

Views

Author

Mohammed Bouayoun (Mohammed.Bouayoun(AT)sanef.com), Apr 13 2006, Jan 08 2008

Keywords

Examples

			a(1)=2 because 2^5 - 5^2 = 7 is prime
		

Programs

  • Mathematica
    Do[If[PrimeQ[(5^n-n^5)],Print[n]],{n,1,5000}]
  • PARI
    is(n)=isprime(5^n-n^5) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

a(5) found by Donovan Johnson
First five terms confirmed by Dmitry Kamenetsky, Dec 18 2008