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.

A217355 Numbers k such that 8^k + 5 is prime.

Original entry on oeis.org

1, 47, 91, 64655
Offset: 1

Views

Author

Vincenzo Librandi, Oct 02 2012

Keywords

Comments

All terms are 1/3 of the terms of A059242 that are multiples of 3.
No more terms <= 10^5. - Tyler NeSmith

Crossrefs

Programs

  • Magma
    [n: n in [0..1000] | IsPrime(8^n + 5)];
    
  • Mathematica
    Select[Range[1000], PrimeQ[8^# + 5] &]
  • PARI
    is(n)=ispseudoprime(8^n+5) \\ Charles R Greathouse IV, Feb 20 2017

Extensions

a(4) from Tyler NeSmith, Jan 19 2021