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.

A212311 Numbers n such that 3^8*2^n - 1 is prime.

Original entry on oeis.org

1, 15, 33, 43, 61, 121, 295, 315, 367, 681, 771, 789, 1485, 4915, 5305, 33649, 81343, 85005, 116307, 154869, 230731, 279591, 287847, 329515, 545353, 1053481
Offset: 1

Views

Author

Lei Zhou, Oct 24 2013

Keywords

Comments

Riesel Primes with k = 3^8 = 6561.
Checked up to n = 1053627.

Examples

			6561*2^1-1=13121 is a prime number.
		

Crossrefs

Programs

  • Mathematica
    b=2^8;i=0; Table[While[i++; cp=b*2^i-1; !PrimeQ[cp]]; i, {j, 1, 13}]
  • PARI
    is(n)=ispseudoprime(3^8*2^n-1) \\ Charles R Greathouse IV, Jun 13 2017

Extensions

Lei Zhou, Nov 08 2013, added a Mathematica program for small elements.