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 A265078 #10 Sep 08 2022 08:46:14 %S A265078 1,4,9,16,25,37,52,69,88,109,133,160,189,220,253,289,328,369,412,457, %T A265078 505,556,609,664,721,781,844,909,976,1045,1117,1192,1269,1348,1429, %U A265078 1513,1600,1689,1780,1873,1969,2068,2169,2272,2377,2485,2596,2709,2824,2941,3061,3184,3309,3436,3565,3697 %N A265078 Partial sums of A072154. %H A265078 Colin Barker, <a href="/A265078/b265078.txt">Table of n, a(n) for n = 0..1000</a> %H A265078 <a href="/index/Rec#order_07">Index entries for linear recurrences with constant coefficients</a>, signature (2,-1,0,0,1,-2,1). %F A265078 G.f.: (1+x)^2*(1-x+x^2)*(1+x+x^2) / ((1-x)^3*(1+x+x^2+x^3+x^4)). %F A265078 a(n) = 2*a(n-1) - a(n-2) + a(n-5) - 2*a(n-6) + a(n-7). - _Vincenzo Librandi_, Jan 01 2016 %t A265078 LinearRecurrence[{2, -1, 0, 0, 1, -2, 1}, {1, 4, 9, 16, 25, 37, 52}, 60] (* _Vincenzo Librandi_, Jan 01 2016 *) %o A265078 (PARI) Vec((1+x)^2*(1-x+x^2)*(1+x+x^2)/((1-x)^3*(1+x+x^2+x^3+x^4)) + O(x^70)) \\ _Colin Barker_, Jan 01 2016 %o A265078 (Magma) I:=[1,4,9,16,25,37,52]; [n le 7 select I[n] else 2*Self(n-1)-Self(n-2)+Self(n-5)-2*Self(n-6)+Self(n-7): n in [1..60]]; // _Vincenzo Librandi_, Jan 01 2016 %Y A265078 Cf. A072154. %K A265078 nonn,easy %O A265078 0,2 %A A265078 _N. J. A. Sloane_, Dec 29 2015