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.

A056800 Numbers n such that 6*9^n +1 is prime.

Original entry on oeis.org

0, 2, 4, 8, 28, 32, 448, 2108, 3112, 76264
Offset: 1

Views

Author

Robert G. Wilson v, Aug 22 2000

Keywords

Comments

a(11) > 10^5. - Robert Price, Jun 04 2015

Programs

  • Mathematica
    Do[If[PrimeQ[6*9^n + 1], Print[n]], {n, 0, 1000}]
    Select[Range[3000], PrimeQ[6 9^# + 1] &] (* Vincenzo Librandi, Sep 28 2012 *)
  • PARI
    is(n)=ispseudoprime(6*9^n+1) \\ Charles R Greathouse IV, Jun 12 2017

Extensions

a(8) from Vincenzo Librandi, Sep 28 2012
a(9)-a(10) from Robert Price, Jun 04 2015