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.
%I A131216 #21 Apr 07 2024 14:40:04 %S A131216 11,209,4169,83171,1659251,33101849,660377729,13174452731, %T A131216 262828676891,5243399085089,104605153024889,2086859661412691, %U A131216 41632588075228931,830564901843165929,16569665448788089649,330562744073918627051 %N A131216 Numbers X such that 99*X^2 - 2178 is a square. %H A131216 G. C. Greubel, <a href="/A131216/b131216.txt">Table of n, a(n) for n = 1..750</a> %H A131216 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (20,-1). %F A131216 a(n+2) = 20*a(n+1) - a(n). %F A131216 a(n+1) = 10*a(n+1)+ sqrt(99*a(n)^2 -2178). %F A131216 G.f.: 11*z*(1-z)/(1-20*z+z^2) - _Richard Choulet_, Oct 09 2007 %F A131216 a(n) = 11*A075839(n). - _R. J. Mathar_, Aug 22 2012 %p A131216 seq(coeff(series(11*x*(1-x)/(1-20*x+x^2), x, n+1), x, n), n = 0..20); # _G. C. Greubel_, Dec 06 2019 %t A131216 LinearRecurrence[{20, -1}, {11, 209}, 20] (* _G. C. Greubel_, Dec 06 2019 *) %o A131216 (PARI) my(x='x+O('x^20)); Vec(11*x*(1-x)/(1-20*x+x^2)) \\ _G. C. Greubel_, Dec 06 2019 %o A131216 (Magma) R<x>:=PowerSeriesRing(Integers(), 20); Coefficients(R!( 11*x*(1-x)/(1-20*x+x^2) )); // _G. C. Greubel_, Dec 06 2019 %o A131216 (Sage) %o A131216 def A131216_list(prec): %o A131216 P.<x> = PowerSeriesRing(ZZ, prec) %o A131216 return P( 11*x*(1-x)/(1-20*x+x^2) ).list() %o A131216 A131216_list(20) # _G. C. Greubel_, Dec 06 2019 %o A131216 (GAP) a:=[11,209];; for n in [3..20] do a[n]:=20*a[n-1]-a[n-2]; od; a; # _G. C. Greubel_, Dec 06 2019 %Y A131216 Cf. A083043. %K A131216 nonn,easy %O A131216 1,1 %A A131216 _Richard Choulet_, Sep 27 2007