OFFSET
1,1
COMMENTS
There exist odd integers 2k-1 such that (2k-1)2^n-1 is always composite.
REFERENCES
Ribenboim, P. The New Book of Prime Number Records. New York: Springer-Verlag, pp. 357-359, 1996.
LINKS
Eric Weisstein's World of Mathematics, Riesel Number.
MATHEMATICA
max = 10000 (* this maximum value of m is sufficient up to n=168 *); a[n_] := Reap[ For[m = 0; cnt = 0, m <= max && cnt < 2, m++, If[m == max, Sow[-1], If[PrimeQ[(2*n - 1)*2^m - 1], cnt++; Sow[m]]]]][[2, 1]]; Table[a[n][[2]], {n, 1, 88}] (* Jean-François Alcover, Feb 28 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved