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.

A216420 Numbers k such that 13^k + k^13 - 1 is prime.

Original entry on oeis.org

1, 5, 85, 155, 383, 6223
Offset: 1

Views

Author

Vincenzo Librandi, Sep 07 2012

Keywords

Comments

a(7) > 2*10^5 if it exists. - Robert Price, Jul 07 2014

Crossrefs

Programs

  • Magma
    [n: n in [0..1000] | IsPrime(13^n+n^13-1)];
    
  • Mathematica
    Select[Range[0, 5000], PrimeQ[13^# + #^13 - 1] &]
  • PARI
    is(n)=ispseudoprime(13^n+n^13-1) \\ Charles R Greathouse IV, Jun 13 2017

Extensions

a(6) from Robert Price, May 24 2014