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.

A046866 Numbers k such that 6*7^k - 1 is prime.

Original entry on oeis.org

0, 1, 2, 7, 18, 55, 69, 87, 119, 141, 189, 249, 354, 1586, 2135, 2865, 2930, 4214, 7167, 67485, 74402, 79326, 231349
Offset: 1

Views

Author

Keywords

Comments

a(23) > 2*10^5. - Robert Price, Nov 13 2015

References

  • R. K. Guy, Unsolved Problems in Number Theory, Section A3.

Crossrefs

Programs

  • Mathematica
    Do[ If[ PrimeQ[6*7^n - 1], Print[n]], {n, 0, 5650}]
  • PARI
    for(n=0,2000, if(isprime(6*7^n-1),print1(n, ", ")))

Extensions

One more term from Jason Earls, Jul 21 2001
More terms from Robert G. Wilson v, Jan 17 2003
One more term from Ryan Propper, Jun 05 2006
a(20)-a(22) from Donovan Johnson, Nov 26 2008
First term 0 inserted by Georg Fischer, Aug 01 2019
a(23) from Riley Fisher, Dec 02 2024