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

A042010
Numerators of continued fraction convergents to sqrt(528).
2
22, 23, 1034, 1057, 47542, 48599, 2185898, 2234497, 100503766, 102738263, 4620987338, 4723725601, 212464913782, 217188639383, 9768765046634, 9985953686017, 449150727231382, 459136680917399
OFFSET
0,1
FORMULA
G.f.: -(x^3-22*x^2-23*x-22)/(x^4-46*x^2+1). - Vincenzo Librandi, Nov 13 2013
a(n) = 46*a(n-2)-a(n-4). - Vincenzo Librandi, Nov 13 2013
MATHEMATICA
Numerator[Convergents[Sqrt[528], 30]] (* or *) CoefficientList[Series[-(x^3 - 22 x^2 - 23 x - 22)/(x^4 - 46 x^2 + 1), {x, 0, 30}], x] (* Vincenzo Librandi, Nov 13 2013 *)
PROG
(Magma) I:=[22, 23, 1034, 1057]; [n le 4 select I[n] else 46*Self(n-2)-Self(n-4): n in [1..25]]; // Vincenzo Librandi, Nov 13 2013
CROSSREFS
Cf. A042011.
Sequence in context: A042006 A042008 A042009 * A162334 A165483 A067189
KEYWORD
nonn,cofr,frac,easy,less
AUTHOR
STATUS
approved