OFFSET
1,1
EXAMPLE
a(13) = nearest integer to Pi*prime(13) = the nearest integer to (Pi*41) = 128.805298... = 129, so a(13) = 129.
MATHEMATICA
Table[Round[Pi Prime@ n], {n, 55}] (* Michael De Vlieger, Feb 20 2017 *)
PROG
(PARI) a(n) = round(Pi*prime(n)); \\ Michel Marcus, Feb 20 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Ahmad J. Masad, Feb 20 2017
STATUS
approved