OFFSET
0,3
COMMENTS
The following remarks assume an offset of 1. This is the sequence of Lehmer numbers U_n(sqrt(R),Q) for the parameters R = 22 and Q = -1; it is a strong divisibility sequence, that is, gcd(a(n),a(m)) = a(gcd(n,m)) for all positive integers n and m. Consequently, this is a divisibility sequence: if n divides m then a(n) divides a(m). - Peter Bala, May 28 2014
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,24,0,-1).
FORMULA
G.f.: (1 + x - x^2)/(x^4 - 24*x^2 + 1). - Vincenzo Librandi, Dec 14 2013
a(n) = 24*a(n-2) - a(n-4). - Vincenzo Librandi, Dec 14 2013
From Peter Bala, May 28 2014: (Start)
The following remarks assume an offset of 1.
Let alpha = ( sqrt(22) + sqrt(26) )/2 and beta = ( sqrt(22) - sqrt(26) )/2 be the roots of the equation x^2 - sqrt(22)*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)} ( 22 + 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) = 22*a(2*n) + a(2*n - 1). (End)
MATHEMATICA
Denominator[Convergents[Sqrt[143], 30]] (* or *) CoefficientList[Series[(1 + x - x^2)/(x^4 - 24 x^2 + 1), {x, 0, 30}], x] (* Vincenzo Librandi, Dec 14 2013 *)
PROG
(Magma) I:=[1, 1, 23, 24]; [n le 4 select I[n] else 24*Self(n-2)-Self(n-4): n in [1..40]]; // Vincenzo Librandi, Dec 14 2013
CROSSREFS
KEYWORD
nonn,frac,easy,less
AUTHOR
EXTENSIONS
More terms from Vincenzo Librandi, Dec 14 2013
STATUS
approved