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.

A264866 Primes of the form 2^x + y (x >= 0 and 0 <= y < 2^x) such that all the numbers 2^(x+a) + (y-a) (0 < a <= y) are composite.

Original entry on oeis.org

2, 3, 5, 11, 13, 17, 19, 23, 41, 71, 131, 149, 257, 277, 523, 1117, 2053, 2161, 2237, 2251, 2999, 4099, 5237, 8233, 8243, 16453, 16553, 32771, 32779, 32783, 32789, 32797, 32801, 32839, 32843, 32917, 33623, 65537, 65539, 65543, 65563, 65599, 65651, 72497, 131129, 131267, 134777, 262147, 262151, 264959
Offset: 1

Views

Author

Zhi-Wei Sun, Nov 26 2015

Keywords

Comments

Conjecture: The sequence has infinitely many terms.
This is motivated by part (i) of the conjecture in A231201 and the conjecture in A264865.

Examples

			a(4) = 11 since 11 = 2^3 + 3 is a prime with 3 < 2^3, and 2^4 + 2 = 18, 2^5 + 1 = 33 and 2^6 + 0 = 64 are all composite.
		

Crossrefs

Programs

  • Mathematica
    p[n_]:=p[n]=Prime[n]
    x[n_]:=x[n]=Floor[Log[2,p[n]]]
    y[n_]:=y[n]=p[n]-2^(x[n])
    n=0;Do[Do[If[PrimeQ[2^(x[k]+a)+y[k]-a],Goto[aa]],{a,1,y[k]}];n=n+1;Print[n," ",p[k]];Label[aa];Continue,{k,1,23226}]