OFFSET
1,1
COMMENTS
Conjecture: a(n) is nonzero for all n. These binary trinomials can also be written as f*2^n+1, where f=2^m+1 for some m, which is reminiscent of the Sierpinski problem (see A076336). The conjecture is equivalent to no Sierpinski numbers of the form 2^m+1 existing.
The PFGW program was used to find a(32), which produces a 138012-digit probable prime.
LINKS
T. D. Noe, Table of n, a(n) for n=1..255
Henri Lifchitz and Renaud Lifchitz (Editors), Search for 2^n+2^m+1, PRP Top Records.
MATHEMATICA
mx=4000; Table[s=1+2^n; k=n+1; While[k<mx && !PrimeQ[s+2^k], k++ ]; If[k==mx, 0, k], {n, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Sep 26 2007
EXTENSIONS
Edited by Peter Munn, Sep 29 2024
STATUS
approved