OFFSET
1,1
COMMENTS
These are the primes arising in A051899.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
EXAMPLE
a(29)=19 because 19 is the smallest prime p such that 2*29*p+1 is prime.
MATHEMATICA
Table[k = 1; While[! PrimeQ[2 n Prime@ k + 1], k++]; Prime@ k, {n, 120}] (* Michael De Vlieger, Jul 26 2016 *)
PROG
(PARI) a(n) = p=2; while(!isprime(2*n*p+1), p = nextprime(p+1)); p; \\ Michel Marcus, Dec 10 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved