[go: up one dir, main page]

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!)
A228560 Curvature (rounded down) of the circle inscribed in the n-th golden triangle arranged in a spiral form. 1
2, 4, 7, 11, 18, 30, 49, 79, 129, 209, 338, 547, 886, 1434, 2320, 3754, 6075, 9830, 15905, 25735, 41641, 67376, 109017, 176394, 285412, 461806, 747218, 1209024 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Starting with a golden triangle whose base is of length 1 and whose sides are of length phi = (1+sqrt(5))/2, create the next golden triangle at the base of the previous triangle, i.e., sides length = 1 and base length = phi-1, and so on. a(n) is the floor of the curvature (inverse of the radius) of the circle inscribed in the n-th triangle.
The golden triangles created by this process are the same as the golden triangles inscribed in a logarithmic spiral.
The logarithmic spiral can be approximated by circular arcs of radii 1, phi-1, (phi-1)^2, ... which are the sides of bisected golden gnomons and center located at their related apex. The sequence whose n-th term is the curvature (rounded down) of the n-th such circular arc is A014217. See illustration in link.
LINKS
Kival Ngaokrajang, Illustration of initial terms.
Wikipedia, Golden triangle.
PROG
(Small Basic)
phi=(1+Math.SquareRoot(5))/2
b[0]=phi
For n = 1 To 30
c=b[n-1]*(phi-1)
s=(2*b[n-1]+c)/2
r=math.SquareRoot((Math.Power((s-b[n-1]), 2)*(s-c))/s)
b[n]=c
a=math.Floor(1/r)
TextWindow.Write(a+", ")
EndFor
CROSSREFS
Cf. A001521 (for 45-45-90 triangles), A065565 (for 3:4:5 triangles), A014217.
Sequence in context: A004696 A293418 A289077 * A018063 A289004 A000570
KEYWORD
nonn,more
AUTHOR
Kival Ngaokrajang, Aug 25 2013
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 August 29 15:03 EDT 2024. Contains 375517 sequences. (Running on oeis4.)