OFFSET
1,1
COMMENTS
Least number such that n^17-1 and n^17+1 are both semiprime is 93888. - Altug Alkan, Sep 30 2016
EXAMPLE
a(1) = 20 because 20^17-1 = 13107199999999999999999 = 19*689852631578947368421 is the first occurrence of n^17 - 1 as a product of two distinct primes.
MATHEMATICA
Select[Range[3000], PrimeOmega[#^17-1] == 2 &]
PROG
(PARI) isok(n) = bigomega(n^17-1)==2; \\ Michel Marcus, Sep 23 2016
(PARI) lista(nn) = forprime(p=2, nn, if(ispseudoprime(((p+1)^17-1)/p), print1(p+1, ", "))); \\ Altug Alkan, Sep 30 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Gary E. Davis, Sep 22 2016
EXTENSIONS
More terms from Altug Alkan, Sep 30 2016
STATUS
approved