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.

A114973 Numbers n such that 5^n + n^5 is a semiprime.

Original entry on oeis.org

1, 2, 4, 6, 8, 9, 84, 288, 628
Offset: 1

Views

Author

Zak Seidov, Feb 22 2006

Keywords

Comments

a(10) >= 868. - Hugo Pfoertner, Jul 28 2019

Examples

			2 is OK because 5^2 + 2^5 = 25 + 32 = 57 = 3*19 (semiprime).
		

Crossrefs

Programs

  • Magma
    IsSemiprime:=func< n|&+[k[2]: k in Factorization(n)] eq 2 >; [n: n in [1..85]|IsSemiprime(5^n+n^5)]; // Vincenzo Librandi, Dec 16 2010
  • Mathematica
    Select[Range[100],PrimeOmega[5^# + #^5]==2&] (* Vincenzo Librandi, May 21 2014 *)

Extensions

a(8), a(9) from Hugo Pfoertner, Jul 28 2019