A248833 The curvature of touching circles inscribed in a special way in the larger segment of circle of radius 1/6 divided by a chord of length sqrt(8/75).
10, 25, 160, 1225, 9610, 75625, 595360, 4687225, 36902410, 290532025, 2287353760, 18008298025, 141779030410, 1116223945225, 8788012531360, 69187876305625, 544714997913610, 4288532107003225, 33763541858112160, 265819802757894025, 2092794880205040010, 16476539238882426025
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..300
- Kival Ngaokrajang, Illustration of initial terms.
- Eric Weisstein's World of Mathematics, Sagitta.
- Index entries for linear recurrences with constant coefficients, signature (9,-9,1).
Programs
-
Magma
I:=[10,25,160]; [n le 3 select I[n] else 9*Self(n-1)-9*Self(n-2)+Self(n-3): n in [1..30]]; // Vincenzo Librandi, Oct 29 2014
-
Mathematica
CoefficientList[Series[- 5 (5 x^2 - 13 x + 2)/((x - 1) (x^2 - 8 x + 1)), {x, 0, 30}], x] (* Vincenzo Librandi, Oct 29 2014 *) LinearRecurrence[{9,-9,1}, {10,25,160}, 30] (* G. C. Greubel, Dec 20 2017 *)
-
PARI
{ r=0.6;print1(round(6/r),", ");r1=r; for (n=1,40, if (n<=1,ab=2-r,ab=sqrt(ac^2+r^2)); ac=sqrt(ab^2-r^2); if (n<=1,z=0,z=(Pi/2)-atan(ac/r)+asin((r1-r)/(r1+r));r1=r); b=acos(r/ab)-z; r=r*(1-cos(b))/(1+cos(b)); print1(round(6/r),", "); ) }
-
PARI
Vec(-5*(5*x^2-13*x+2)/((x-1)*(x^2-8*x+1)) + O(x^100)) \\ Colin Barker, Oct 15 2014
Formula
From Colin Barker, Oct 15 2014: (Start)
a(n) = 9*a(n-1) - 9*a(n-2) + a(n-3).
G.f.: -5*(5*x^2-13*x+2) / ((x-1)*(x^2-8*x+1)). (End)
a(n) = 5*(2+(4-sqrt(15))^n+(4+sqrt(15))^n)/2. - Colin Barker, Mar 03 2016
E.g.f.: 5*exp(x)*(1 + exp(3*x)*cosh(sqrt(15)*x)). - Stefano Spezia, Aug 27 2025
Comments