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”).

A041605
Denominators of continued fraction convergents to sqrt(320).
2
1, 1, 8, 9, 314, 323, 2575, 2898, 101107, 104005, 829142, 933147, 32556140, 33489287, 266981149, 300470436, 10482975973, 10783446409, 85967100836, 96750547245, 3375485707166, 3472236254411, 27681139488043, 31153375742454, 1086895914731479, 1118049290473933
OFFSET
0,3
FORMULA
G.f.: -(x^2-x-1)*(x^4+9*x^2+1) / ((x^2-4*x-1)*(x^2+4*x-1)*(x^4+18*x^2+1)). - Colin Barker, Nov 19 2013
a(n) = 322*a(n-4) - a(n-8) for n>7. - Vincenzo Librandi, Dec 21 2013
MATHEMATICA
Denominator[Convergents[Sqrt[320], 30]] (* Vincenzo Librandi Dec 21 2013 *)
PROG
(Magma) I:=[1, 1, 8, 9, 314, 323, 2575, 2898]; [n le 8 select I[n] else 322*Self(n-4)-Self(n-8): n in [1..40]]; // Vincenzo Librandi, Dec 21 2013
CROSSREFS
Sequence in context: A307947 A175849 A294468 * A239524 A115073 A298020
KEYWORD
nonn,frac,easy
AUTHOR
EXTENSIONS
More terms from Colin Barker, Nov 19 2013
STATUS
approved