cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A094979 Duplicate of A065565.

Original entry on oeis.org

1, 1, 1, 1, 2, 3, 3, 4, 5, 7, 9, 11, 14, 18, 22, 28, 35, 44, 55, 69, 86, 108, 135, 169, 211
Offset: 0

Views

Author

Keywords

A228560 Curvature (rounded down) of the circle inscribed in the n-th golden triangle arranged in a spiral form.

Original entry on oeis.org

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
Offset: 1

Views

Author

Kival Ngaokrajang, Aug 25 2013

Keywords

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.

Crossrefs

Cf. A001521 (for 45-45-90 triangles), A065565 (for 3:4:5 triangles), A014217.

A241203 a(n) = floor(5^n/4^(n-1)).

Original entry on oeis.org

5, 6, 7, 9, 12, 15, 19, 23, 29, 37, 46, 58, 72, 90, 113, 142, 177, 222, 277, 346, 433, 542, 677, 847, 1058, 1323, 1654, 2067, 2584, 3231, 4038, 5048, 6310, 7888, 9860, 12325, 15407, 19259, 24074, 30092, 37615, 47019, 58774, 73468, 91835, 114794, 143492, 179366, 224207, 280259
Offset: 1

Views

Author

Kival Ngaokrajang, Aug 08 2014

Keywords

Comments

a(n) is the curvature (rounded down) of circles inscribed in minor segment where chord length equal to sagitta length starting from a unit circle, the next iterations are nested down at scale factor 4/5. The curvature of circles inscribed in major segment would be A065565: floor((5/4)^n). See illustrations.

Crossrefs

Cf. A065565.

Programs

  • Magma
    [Floor(4*(5/4)^n): n in [1..60]]; // G. C. Greubel, Jun 07 2023
    
  • Mathematica
    Floor[4*(5/4)^Range[60]] (* G. C. Greubel, Jun 07 2023 *)
  • PARI
    for(n=1,100,print1(floor(5^n/4^(n-1)),", "))
    
  • SageMath
    [(5^n//4^(n-1)) for n in range(1,61)] # G. C. Greubel, Jun 07 2023

Formula

a(n) = floor(5^n/4^(n-1)), n >= 1.
Showing 1-3 of 3 results.