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.

A217130 Numbers n such that 7^n + 6 is prime.

Original entry on oeis.org

0, 1, 3, 16, 36, 244, 315, 2577, 9500, 17596, 25551, 32193, 32835, 36504, 75136
Offset: 1

Views

Author

Vincenzo Librandi, Oct 01 2012

Keywords

Comments

a(16) > 10^5. - Robert Price, Jan 24 2014

Crossrefs

Programs

  • Magma
    /* The code produces the sequence up to 315: */ [n: n in [0..2000] | IsPrime(7^n+6)];
  • Mathematica
    Select[Range[0, 5000], PrimeQ[7^# + 6] &]
  • PARI
    for(n=1, 5000, if(isprime(7^n+6), print1(n", ")))
    

Extensions

a(9)-a(15) from Robert Price, Jan 24 2014