A248578 a(n) = round(1/(Pi-n*sin(Pi/n))).
0, 1, 2, 3, 5, 7, 10, 12, 16, 19, 24, 28, 33, 38, 44, 50, 56, 63, 70, 77, 85, 94, 102, 112, 121, 131, 141, 152, 163, 174, 186, 198, 211, 224, 237, 251, 265, 280, 294, 310, 325, 341, 358, 375, 392, 410, 428, 446, 465, 484
Offset: 1
Keywords
Programs
-
Mathematica
Table[Round[1/(Pi -n Sin[Pi/n])],{n,50}] (* Harvey P. Dale, Jun 30 2022 *)
-
PARI
a(n)=round(1/(Pi-n*sin(Pi/n)))
Comments