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.

A177464 The smallest positive k such that the n-th Mersenne prime +-k are two primes.

Original entry on oeis.org

4, 12, 24, 30, 30, 66, 954, 1920, 30, 4116, 576, 214608
Offset: 2

Views

Author

Keywords

Comments

Smallest k>0 such that A000668(n)+k and A000668(n)-k are both prime.

Examples

			7+-4->primes, 31+-12->primes, 127+-24->primes, 8191+-30->primes, 131071+-30->primes, 524287+-66->primes..
		

Crossrefs

Programs

  • Mathematica
    g[n_]:=2^Prime[n]-1; f[n_]:=Block[{k},If[OddQ[n],k=2,k=1];While[ !PrimeQ[n-k]||!PrimeQ[n+k],k+=2];k]; lst={};Do[If[PrimeQ[g[n]],AppendTo[lst,f[g[n]]]],{n,2,40}];lst

Formula

a(n) = A082467(A000668(n)). - R. J. Mathar, Jan 23 2011