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 A160805 #18 Sep 08 2022 08:45:45 %S A160805 4,6,13,27,50,84,131,193,272,370,489,631,798,992,1215,1469,1756,2078, %T A160805 2437,2835,3274,3756,4283,4857,5480,6154,6881,7663,8502,9400,10359, %U A160805 11381,12468,13622,14845,16139,17506,18948,20467,22065,23744,25506,27353,29287 %N A160805 a(n) = (2*n^3 + 9*n^2 + n + 24) / 6. %C A160805 Arithmetic progression of third order; a(n+1)-a(n) = A008865(n+2); %C A160805 a(n) = A101986(n) + 4. %D A160805 R. Courant, Differential and Integral Calculus Vol. I (Blackie&Son, 1937), ch. I.4, Example 5, p.29. %H A160805 Vincenzo Librandi, <a href="/A160805/b160805.txt">Table of n, a(n) for n = 0..1000</a> %H A160805 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (4,-6,4,-1). %F A160805 a(n) = (2*n^3 + 9*n^2 + n + 24) / 6. %F A160805 From _Wesley Ivan Hurt_, Aug 29 2015: (Start) %F A160805 G.f.: (4-10*x+13*x^2-5*x^3)/(x-1)^4. %F A160805 a(n) = 4*a(n-1)-6*a(n-2)+4*a(n-3)-a(n-4), n>3. (End) %p A160805 A160805:=n->(2*n^3+9*n^2+n+24)/6: seq(A160805(n), n=0..80); # _Wesley Ivan Hurt_, Aug 29 2015 %t A160805 Table[(2 n^3 + 9 n^2 + n + 24)/6, {n, 0, 60}] %t A160805 CoefficientList[Series[(4 - 10*x + 13*x^2 - 5*x^3)/(x - 1)^4, {x, 0, 60}], x] (* _Wesley Ivan Hurt_, Aug 29 2015 *) %o A160805 (Magma) [(2*n^3+9*n^2+n+24)/6: n in [0..50]]; // _Vincenzo Librandi_, Dec 27 2010 %o A160805 (PARI) first(m)=vector(m,i,i--;(2*i^3 + 9*i^2 + i + 24) / 6) \\ _Anders Hellström_, Aug 29 2015 %Y A160805 Cf. A008865, A101986. %K A160805 nonn,easy %O A160805 0,1 %A A160805 _Reinhard Zumkeller_, May 26 2009