OFFSET
1,1
LINKS
Ivan Panchenko, Table of n, a(n) for n = 1..1000
EXAMPLE
a(1) = 17 because 9 * 1 - 2 = 7 and the 7th prime is 17.
a(2) = 53 because 9 * 2 - 2 = 16 and the 16th prime is 53.
MATHEMATICA
Table[Prime[9n - 2], {n, 45}] (* Alonso del Arte, Apr 08 2011 *)
PROG
(Magma) [ NthPrime(9*n-2): n in [1..1000] ]; // Vincenzo Librandi, Apr 08 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved