A041923 Denominators of continued fraction convergents to sqrt(483).
1, 1, 43, 44, 1891, 1935, 83161, 85096, 3657193, 3742289, 160833331, 164575620, 7073009371, 7237584991, 311051578993, 318289163984, 13679196466321, 13997485630305, 601573592939131, 615571078569436, 26455558892855443, 27071129971424879
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
- Eric W. Weisstein, MathWorld: Lehmer Number
- Index entries for linear recurrences with constant coefficients, signature (0,44,0,-1).
Programs
-
Magma
I:=[1,1,43,44]; [n le 4 select I[n] else 44*Self(n-2)-Self(n-4): n in [1..30]]; // Vincenzo Librandi, Dec 27 2013
-
Mathematica
Denominator[Convergents[Sqrt[483], 30]] (* Vincenzo Librandi, Dec 27 2013 *)
Formula
G.f.: -(x^2 -x -1) / (x^4 -44*x^2 +1). - Colin Barker, Nov 27 2013
a(n) = 44*a(n-2) - a(n-4) for n > 3. - Vincenzo Librandi, Dec 27 2013
From Peter Bala, May 27 2014: (Start)
The following remarks assume an offset of 1.
Let alpha = ( sqrt(42) + sqrt(46) )/2 and beta = ( sqrt(42) - sqrt(46) )/2 be the roots of the equation x^2 - sqrt(42)*x - 1 = 0. Then a(n) = (alpha^n - beta^n)/(alpha - beta) for n odd, while a(n) = (alpha^n - beta^n)/(alpha^2 - beta^2) for n even.
a(n) = Product_{k = 1..floor((n-1)/2)} ( 42 + 4*cos^2(k*Pi/n) ).
Recurrence equations: a(0) = 0, a(1) = 1 and for n >= 1, a(2*n) = a(2*n - 1) + a(2*n - 2) and a(2*n + 1) = 42*a(2*n) + a(2*n - 1). (End)
Extensions
More terms from Colin Barker, Nov 27 2013
Comments