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.

A243114 Primes of the form 6^x-x^6.

Original entry on oeis.org

5, 162287, 13055867207, 1719070799748422589190392551, 174588755932389037098918153698589675008087, 307180606913594390117978657628360735703373091543821695941623353827100004182413811352186951
Offset: 1

Views

Author

M. F. Hasler, Aug 20 2014

Keywords

Comments

The next term is too large to include.
See A117706 for the corresponding numbers x.
The next term has 113 digits. - Harvey P. Dale, Jan 17 2018

Crossrefs

Programs

  • Mathematica
    Select[Table[6^x-x^6,{x,200}],PrimeQ] (* Harvey P. Dale, Jan 17 2018 *)
  • PARI
    for(x=1,1e5,ispseudoprime(p=6^x-x^6)&&print1(p","))