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

A042768
Numerators of continued fraction convergents to sqrt(915).
2
30, 121, 7290, 29281, 1764150, 7085881, 426917010, 1714753921, 103312152270, 414963363001, 25001113932330, 100419419092321, 6050166259471590, 24301084456978681, 1464115233678192450, 5880762019169748481, 354309836383863101310, 1423120107554622153721
OFFSET
0,1
FORMULA
G.f.: (30 +121*x +30*x^2 -x^3)/(1 -242*x^2 +x^4). - Vincenzo Librandi, Dec 04 2013
a(n) = 242*a(n-2) - a(n-4). - Vincenzo Librandi, Dec 04 2013
MATHEMATICA
Numerator[Convergents[Sqrt[915], 30]] (* or *) CoefficientList[Series[(30 + 121 x + 30 x^2 - x^3)/(1 - 242 x^2 + x^4), {x, 0, 30}], x] (* Vincenzo Librandi, Dec 04 2013 *)
PROG
(Magma) I:=[30, 121, 7290, 29281]; [n le 4 select I[n] else 242*Self(n-2)-Self(n-4): n in [1..30]]; // Vincenzo Librandi, Dec 04 2013
CROSSREFS
Cf. A042769.
Sequence in context: A042764 A219223 A042766 * A122137 A003901 A010744
KEYWORD
nonn,cofr,frac,easy
AUTHOR
EXTENSIONS
More terms from Vincenzo Librandi, Dec 04 2013
STATUS
approved