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 A110308 #14 Jan 03 2023 03:56:20 %S A110308 0,-2,11,-52,247,-1182,5664,-27140,130037,-623044,2985181,-14302860, %T A110308 68529120,-328342742,1573184591,-7537580212,36114716467,-173036002122, %U A110308 829065294144,-3972290468600,19032387048857,-91189644775684,436915836829561,-2093389539372120 %N A110308 Expansion of -x*(2+x)/((1+x+x^2)*(1+5*x+x^2)). %H A110308 Colin Barker, <a href="/A110308/b110308.txt">Table of n, a(n) for n = 0..1000</a> %H A110308 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (-6,-7,-6,-1). %F A110308 a(n+2) = - 5*a(n+1) - a(n) - A099837(n+2). %F A110308 a(n) = -6*a(n-1) - 7*a(n-2) - 6*a(n-3) - a(n-4) for n>3. - _Colin Barker_, Apr 30 2019 %F A110308 a(n) = (1/4)*(2*U(n, -5/2) + U(n-1, -5/2) - 2*U(n, -1/2) - U(n-1, -1/2)), where U(n, x) = ChebyshevU(n, x). - _G. C. Greubel_, Jan 03 2023 %p A110308 seriestolist(series(-x*(2+x)/((x^2+x+1)*(x^2+5*x+1)), x=0,25)); %t A110308 LinearRecurrence[{-6,-7,-6,-1}, {0,-2,11,-52}, 40] (* _G. C. Greubel_, Jan 03 2023 *) %o A110308 (PARI) concat(0, Vec(-x*(2+x)/((1+x+x^2)*(1+5*x+x^2)) + O(x^25))) \\ _Colin Barker_, Apr 30 2019 %o A110308 (Magma) R<x>:=PowerSeriesRing(Integers(), 40); [0] cat Coefficients(R!( -x*(2+x)/((1+x+x^2)*(1+5*x+x^2)) )); // _G. C. Greubel_, Jan 03 2023 %o A110308 (SageMath) %o A110308 def U(n, x): return chebyshev_U(n,x) %o A110308 def A110308(n): return (1/4)*(2*U(n, -5/2) +U(n-1, -5/2) -2*U(n, -1/2) -U(n-1, -1/2)) %o A110308 [A110308(n) for n in range(41)] # _G. C. Greubel_, Jan 03 2023 %Y A110308 Cf. A004253, A049347, A099837, A110307, A110309, A110310, A110311. %K A110308 easy,sign %O A110308 0,2 %A A110308 _Creighton Dement_, Jul 19 2005