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

A041945
Denominators of continued fraction convergents to sqrt(495).
2
1, 4, 177, 712, 31505, 126732, 5607713, 22557584, 998141409, 4015123220, 177663563089, 714669375576, 31623116088433, 127207133729308, 5628737000177985, 22642155134441248, 1001883562915592897, 4030176406796812836, 178329645461975357681, 717348758254698243560
OFFSET
0,2
FORMULA
G.f.: -(x^2-4*x-1) / (x^4-178*x^2+1). - Colin Barker, Nov 27 2013
a(n) = 178*a(n-2) - a(n-4) for n>3. - Vincenzo Librandi, Dec 27 2013
MATHEMATICA
Denominator[Convergents[Sqrt[495], 30]] (* Harvey P. Dale, Aug 22 2013 *)
CoefficientList[Series[(1 + 4 x - x^2)/(x^4 - 178 x^2 + 1), {x, 0, 40}], x] (* Vincenzo Librandi, Dec 27 2013 *)
LinearRecurrence[{0, 178, 0, -1}, {1, 4, 177, 712}, 20] (* Harvey P. Dale, Aug 13 2021 *)
PROG
(Magma) I:=[1, 4, 177, 712]; [n le 4 select I[n] else 178*Self(n-2)-Self(n-4): n in [1..30]]; // Vincenzo Librandi, Dec 27 2013
CROSSREFS
Sequence in context: A113254 A210780 A127606 * A300387 A082393 A176351
KEYWORD
nonn,frac,easy
AUTHOR
EXTENSIONS
More terms from Colin Barker, Nov 27 2013
STATUS
approved