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.

A128453 Numbers k such that absolute value of 13^k - k^13 is prime.

Original entry on oeis.org

6, 12, 38, 2540
Offset: 1

Views

Author

Alexander Adamchuk, Mar 03 2007

Keywords

Comments

a(5) > 10^5. - Robert Price, Apr 17 2019

Programs

  • Mathematica
    Do[If[PrimeQ[13^n - n^13], Print[n]], {n, 10^4}] (* Ryan Propper, Jul 01 2007 *)
  • PARI
    is(n)=ispseudoprime(abs(13^n-n^13)) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

a(4) from Ryan Propper, Jul 01 2007