cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A041147 Denominators of continued fraction convergents to sqrt(83).

This page as a plain text file.
%I A041147 #24 Jul 09 2025 00:20:17
%S A041147 1,9,163,1476,26731,242055,4383721,39695544,718903513,6509827161,
%T A041147 117895792411,1067571958860,19334191051891,175075291425879,
%U A041147 3170689436717713,28711280221885296,519973733430653041,4708474881097762665,85272521593190381011,772161169219811191764
%N A041147 Denominators of continued fraction convergents to sqrt(83).
%H A041147 Vincenzo Librandi, <a href="/A041147/b041147.txt">Table of n, a(n) for n = 0..200</a>
%H A041147 <a href="/index/Rec">Index entries for linear recurrences with constant coefficients</a>, signature (0,164,0,-1).
%F A041147 G.f.: -(x^2-9*x-1) / (x^4-164*x^2+1). - _Colin Barker_, Nov 13 2013
%F A041147 a(n) = 164*a(n-2) - a(n-4). - _Vincenzo Librandi_, Dec 11 2013
%t A041147 Denominator/@Convergents[Sqrt[83], 50] (* _Vladimir Joseph Stephan Orlovsky_, Jul 05 2011 *)
%t A041147 CoefficientList[Series[(1 + 9 x - x^2)/(x^4 - 164 x^2 + 1), {x, 0, 30}], x] (* _Vincenzo Librandi_, Dec 11 2013 *)
%t A041147 LinearRecurrence[{0,164,0,-1},{1,9,163,1476},30] (* _Harvey P. Dale_, Nov 09 2017 *)
%o A041147 (Magma) I:=[1, 9, 163, 1476]; [n le 4 select I[n] else 164*Self(n-2)-Self(n-4): n in [1..30]]; // _Vincenzo Librandi_, Dec 11 2013
%Y A041147 Cf. A041146, A040073, A020840, A010534.
%K A041147 nonn,frac,easy
%O A041147 0,2
%A A041147 _N. J. A. Sloane_