OFFSET
1,3
COMMENTS
n*sin(Pi/n) is known as the Archimedean approximation to Pi, the present sequence measures [the reciprocal of] the error. See A248358 for the integer part.
MATHEMATICA
Table[Round[1/(Pi -n Sin[Pi/n])], {n, 50}] (* Harvey P. Dale, Jun 30 2022 *)
PROG
(PARI) a(n)=round(1/(Pi-n*sin(Pi/n)))
CROSSREFS
KEYWORD
nonn
AUTHOR
M. F. Hasler, Oct 08 2014
STATUS
approved