login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A041647
Denominators of continued fraction convergents to sqrt(342).
2
1, 2, 73, 148, 5401, 10950, 399601, 810152, 29565073, 59940298, 2187415801, 4434771900, 161839204201, 328113180302, 11973913695073, 24275940570448, 885907774231201, 1796091489032850, 65545201379413801, 132886494247860452, 4849458994302390073
OFFSET
0,2
FORMULA
G.f.: -(x^2-2*x-1) / (x^4-74*x^2+1). - Colin Barker, Nov 20 2013
a(n) = 74*a(n-2) - a(n-4) for n>3. - Vincenzo Librandi, Dec 22 2013
MATHEMATICA
Denominator[Convergents[Sqrt[342], 30]] (* Harvey P. Dale, Oct 13 2012 *)
CoefficientList[Series[(1 + 2 x - x^2)/(x^4 - 74 x^2 + 1), {x, 0, 30}], x] (* Vincenzo Librandi, Dec 22 2013 *)
PROG
(Magma) I:=[1, 2, 73, 148]; [n le 4 select I[n] else 74*Self(n-2)-Self(n-4): n in [1..40]]; // Vincenzo Librandi, Dec 22 2013
CROSSREFS
Sequence in context: A324566 A276518 A297410 * A345293 A083018 A240174
KEYWORD
nonn,frac,easy
AUTHOR
EXTENSIONS
More terms from Colin Barker, Nov 20 2013
STATUS
approved