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.

A242178 Numbers k such that k*8^k + 1 is prime.

Original entry on oeis.org

5, 17, 23, 1911, 20855, 35945, 42816
Offset: 1

Views

Author

Vincenzo Librandi, May 08 2014

Keywords

Crossrefs

Cf. similar sequences listed in A242176.

Programs

  • Magma
    [n: n in [0..2000] | IsPrime(n*8^n+1)];
    
  • Mathematica
    Select[Range[2000], PrimeQ[# 8^# + 1] &]
  • PARI
    is(n)=ispseudoprime(n*8^n+1) \\ Charles R Greathouse IV, May 22 2017

Extensions

a(5)-a(7) from Loeh's list (see Links) - Bruno Berselli, May 08 2014