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.

A217136 Numbers k such that 3^k + 8 is prime.

Original entry on oeis.org

1, 2, 4, 5, 8, 13, 14, 20, 38, 44, 77, 88, 124, 152, 244, 557, 2429, 4382, 6268, 18488, 75097, 81998, 96460, 143497
Offset: 1

Views

Author

Vincenzo Librandi, Oct 01 2012

Keywords

Comments

a(25) > 2*10^5. - Robert Price, Sep 25 2013

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 5000], PrimeQ[3^# + 8] &]
  • PARI
    for(n=1, 5*10^3, if(isprime(3^n+8), print1(n", ")))

Extensions

a(19)-a(24) from Robert Price, Sep 25 2013