login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A245302 Curvature (truncated to integer) of a circle inscribed between a unit circle and a vertex of a circumscribed regular n-gon. 1
3, 5, 9, 13, 19, 25, 32, 39, 48, 57, 67, 78, 90, 103, 116, 130, 145, 161, 178, 195, 213, 232, 252, 273, 294, 317, 340, 364, 388, 414, 440, 467, 495, 524, 554, 584, 615, 647, 680, 714, 748, 783, 820, 856, 894, 933, 972, 1012, 1053, 1095, 1137, 1181, 1225, 1270, 1316, 1362 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,1
COMMENTS
The curvature is the reciprocal of the radius of any one of the n circles externally tangent to the unit circle and internally tangent to two consecutive sides of the circumscribed regular n-gon. - Michael Somos, Aug 05 2014
a(n) + 1 is the curvature (truncated to integer) of a circle inscribed between a unit circle and an inscribed regular n-gon. - Kival Ngaokrajang, Jul 08 2015
LINKS
Kival Ngaokrajang, Illustration of initial terms.
Eric Weisstein's World of Mathematics, Incircle.
FORMULA
a(n) = floor(1/sin(Pi/(2*n))^2 - 1) for n > 2. - Michael Somos, Aug 05 2014
MAPLE
A245302:=n->floor(sin(Pi/(2*n))^(-2)-1): seq(A245302(n), n=3..100); # Wesley Ivan Hurt, Jul 18 2015
MATHEMATICA
f[n_] := Block[{a, b, c, d, g, h}, a = Pi(n - 2)/(2n); b = a/2 + Pi/4; c = 1/Tan[a]; d = 1/Tan[b]; g = 2 Tan[b - a]; h = (2c - 2d + g)/2; Floor[1/Sqrt[((h - c + d)^2*(h - g))/h]]]; f[3] = 3; Array[f, 60, 3] (* Robert G. Wilson v, Jul 25 2014 *)
PROG
(PARI)
{for (n=3, 100, x1=Pi*(n-2)/(2*n); x2=x1/2+Pi/4; b1=1/tan(x1); b2=1/tan(x2); a=b1-b2; z=x2-x1; c=2*tan(z); s=(2*a+c)/2; r=sqrt(((s-a)^2*(s-c))/s); an=floor(1/r); print1(an, ", "))}
(PARI) {a(n) = if( n<4, 3*(n==3), floor(sin(Pi/2 / n)^-2) - 1)}; /* Michael Somos, Aug 05 2014 */
CROSSREFS
Sequence in context: A207187 A359185 A065802 * A118028 A209974 A099392
KEYWORD
nonn,easy
AUTHOR
Kival Ngaokrajang, Jul 17 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 02:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)