OFFSET
1,2
COMMENTS
The exponent of 2 in the expression, 607, is a Mersenne exponent.
EXAMPLE
n = 1 is a term since 2^607 - 1 is prime (the 14th Mersenne prime).
MATHEMATICA
Select[Range@ 12250, PrimeQ[# 2^607 - 1] &] (* Michael De Vlieger, Dec 09 2015 *)
PROG
(MATLAB)
if isprime(n*2^607-1)
disp(n)
end
(PARI) is(n)=ispseudoprime(n*2^607 - 1) \\ Anders Hellström, Dec 09 2015
(Magma) [n: n in [1..2*10^4] |IsPrime(n*2^607-1)]; // Vincenzo Librandi, Dec 10 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vardan Semerjyan, Dec 09 2015
STATUS
approved