OFFSET
0,3
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..200
Index entries for linear recurrences with constant coefficients, signature (0,34,0,-1).
FORMULA
a(n) = 16*a(n-1) + a(n-2) if n odd, otherwise a(n) = 2*a(n-1) + a(n-2), for n >= 2.
a(n) = 34*a(n-2)-a(n-4). G.f.: (x^3-17*x^2+x+1)/((x^2-6*x+1)*(x^2+6*x+1)). [Colin Barker, Jul 16 2012]
EXAMPLE
0, 1, 16/17, 33/35, 544/577, 1121/1189, 18480/19601, 38081/40391, 627776/665857, ...
MATHEMATICA
Table[Denominator[FromContinuedFraction[ContinuedFraction[Sqrt[8/9], n]]], {n, 1, 50}] (* Vladimir Joseph Stephan Orlovsky, Jun 23 2011 *)
Denominator[Convergents [Sqrt[8/9], 30]] (* Vincenzo Librandi, Feb 01 2014 *)
PROG
(Magma) I:=[1, 1, 17, 35]; [n le 4 select I[n] else 34*Self(n-2)-Self(n-4): n in [1..30]]; // Vincenzo Librandi, Feb 01 2014
CROSSREFS
KEYWORD
nonn,frac,easy
AUTHOR
N. J. A. Sloane, Dec 29 2008
STATUS
approved