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

A041623
Denominators of continued fraction convergents to sqrt(330).
2
1, 6, 217, 1308, 47305, 285138, 10312273, 62158776, 2248028209, 13550328030, 490059837289, 2953909351764, 106830796500793, 643938688356522, 23288623577335585, 140375680152370032, 5076813109062656737, 30601254334528310454, 1106721969152081833081
OFFSET
0,2
FORMULA
G.f.: -(x^2-6*x-1) / (x^4-218*x^2+1). - Colin Barker, Nov 20 2013
a(n) = 218*a(n-2) - a(n-4) for n>3. - Vincenzo Librandi, Dec 22 2013
MATHEMATICA
Denominator[Convergents[Sqrt[330], 30]] (* Vincenzo Librandi, Dec 22 2013 *)
LinearRecurrence[{0, 218, 0, -1}, {1, 6, 217, 1308}, 20] (* Harvey P. Dale, Sep 23 2018 *)
PROG
(Magma) I:=[1, 6, 217, 1308]; [n le 4 select I[n] else 218*Self(n-2)-Self(n-4): n in [1..40]]; // Vincenzo Librandi, Dec 22 2013
CROSSREFS
Sequence in context: A194503 A229869 A234610 * A292692 A015477 A331477
KEYWORD
nonn,frac,easy
AUTHOR
EXTENSIONS
More terms from Colin Barker, Nov 20 2013
STATUS
approved