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.

A117921 Primes of the form (2^k - 1)^3 - 2.

Original entry on oeis.org

3373, 29789, 133432829, 8577357821, 281462092005373
Offset: 1

Views

Author

Jonathan Vos Post, May 03 2006

Keywords

Comments

Exponent-3 analog of what for exponent 2 is A091516 Carol primes (2^n-1)^2 - 2 = 4^n - 2^{n+1} - 1. Hence this is a type of "near-cube primes."

Examples

			a(1) = (2^4 - 1)^3 - 2 = 3373 is prime.
a(2) = (2^5 - 1)^3 - 2 = 29789 is prime.
a(3) = (2^9 - 1)^3 - 2 = 133432829 is prime.
a(4) = (2^11 - 1)^3 - 2 = 8577357821 is prime.
		

Crossrefs

Programs

  • Mathematica
    Select[(2^Range[20]-1)^3-2,PrimeQ] (* Harvey P. Dale, Oct 22 2016 *)

Formula

A098878 INTERSECTION A000040. {(2^k - 1)^3 - 2 iff prime}.