OFFSET
1,1
COMMENTS
The associated p are in A136026.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
a(1)=3 because 3 is smallest prime of the form (p-2)/3; in this case prime(k)=11.
a(2)=3 because 3 is smallest prime of the form (p-4)/5; in this case prime(k)=19.
a(3)=5 because 5 is smallest prime of the form (p-6)/7; in this case prime(k)=41.
MATHEMATICA
a = {}; Do[k = 1; While[ !PrimeQ[(Prime[k] - 2n)/(2n + 1)], k++ ]; AppendTo[a, (Prime[k] - 2n)/(2n + 1)], {n, 1, 100}]; a
PROG
(PARI) a(n)=forprime(p=2, , if(isprime(2*n*(p+1)+p), return(p))) \\ Charles R Greathouse IV, Mar 21 2013
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Dec 10 2007
EXTENSIONS
Edited by R. J. Mathar, May 17 2009
STATUS
approved