login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A031383
a(n) = prime(9*n - 2).
1
17, 53, 97, 139, 191, 239, 283, 349, 401, 457, 509, 577, 631, 683, 751, 821, 877, 941, 1009, 1061, 1117, 1193, 1259, 1307, 1409, 1459, 1523, 1583, 1637, 1721, 1787, 1871, 1933, 2003, 2081, 2137, 2221, 2287, 2351, 2411, 2477, 2579, 2659
OFFSET
1,1
LINKS
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
Cf. A017245.
Sequence in context: A044119 A044500 A142105 * A248697 A180456 A154409
KEYWORD
nonn
AUTHOR
STATUS
approved