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 A014205 #35 Jul 08 2025 02:55:10 %S A014205 0,1,7,24,60,125,231,392,624,945,1375,1936,2652,3549,4655,6000,7616, %T A014205 9537,11799,14440,17500,21021,25047,29624,34800,40625,47151,54432, %U A014205 62524,71485,81375,92256,104192,117249,131495,147000,163836,182077,201799,223080,246000 %N A014205 (1/12)*(n+5)*(n+1)*n^2. %C A014205 Partial sums of A084990. - _Arkadiusz Wesolowski_, Jan 25 2014 %H A014205 Vincenzo Librandi, <a href="/A014205/b014205.txt">Table of n, a(n) for n = 0..1000</a> %H A014205 <a href="/index/Rec#order_05">Index entries for linear recurrences with constant coefficients</a>, signature (5, -10, 10, -5, 1). %F A014205 a(n) = 2*C(n+3,4) - C(n+1,2). - _Zerinvary Lajos_, May 02 2007 %F A014205 G.f.: x*(x^2-2*x-1)/(x-1)^5. - Maksym Voznyy (voznyy(AT)mail.ru), Aug 10 2009 %F A014205 a(0)=0, a(1)=1, a(2)=7, a(3)=24, a(4)=60, a(n)=5*a(n-1)-10*a(n-2)+ 10*a(n-3)- 5*a(n-4)+a(n-5). - _Harvey P. Dale_, Aug 10 2014 %p A014205 seq(2*binomial(n+3, 4)-binomial(n+1, 2), n=0..32); # _Zerinvary Lajos_, May 02 2007 %t A014205 Table[((n+5)(n+1)n^2)/12,{n,0,40}] (* or *) LinearRecurrence[{5,-10,10,-5,1},{0,1,7,24,60},50] (* _Harvey P. Dale_, Aug 10 2014 *) %t A014205 CoefficientList[Series[x (x^2 - 2 x - 1)/(x - 1)^5, {x, 0, 50}], x] (* _Vincenzo Librandi_, Aug 11 2014 *) %o A014205 (Magma) [(1/12)*(n+5)*(n+1)*n^2: n in [0..50]]; // _Vincenzo Librandi_, Aug 11 2014 %o A014205 (PARI) a(n)=n^2*(n+1)*(n+5)/12 \\ _Charles R Greathouse IV_, Oct 21 2022 %Y A014205 Cf. A084990. %K A014205 nonn,easy %O A014205 0,3 %A A014205 _N. J. A. Sloane_