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 A053739 #42 Dec 30 2023 23:49:09 %S A053739 1,6,22,63,155,344,709,1383,2587,4685,8273,14323,24416,41119,68595, %T A053739 113590,187030,306605,500950,816410,1327986,2157046,3499982,5674578, %U A053739 9195035,14893364,24115804,39040633,63192397,102273950,165512723,267839033,433410661,701315739,1134800215 %N A053739 Partial sums of A014166. %D A053739 A. H. Beiler, Recreations in the Theory of Numbers, Dover, N.Y., 1964, pp. 194-196. %H A053739 G. C. Greubel, <a href="/A053739/b053739.txt">Table of n, a(n) for n = 0..1000</a> %H A053739 Hung Viet Chu, <a href="https://arxiv.org/abs/2106.03659">Partial Sums of the Fibonacci Sequence</a>, arXiv:2106.03659 [math.CO], 2021. %H A053739 <a href="/index/Rec#order_07">Index entries for linear recurrences with constant coefficients</a>, signature (6,-14,15,-5,-4,4,-1). %F A053739 a(n) = Sum_{i=0..floor(n/2)} binomial(n+5-i, n-2*i) for n >= 0. %F A053739 a(n) = a(n-1) + a(n-2) + C(n+4,4); n >= 0; a(-1)=0. %F A053739 G.f.: 1/((1-x-x^2)*(1-x)^5). - _R. J. Mathar_, May 22 2013 %F A053739 a(n) = Fibonacci(n+11) - (n^4 + 22*n^3 + 203*n^2 + 974*n + 2112)/4!. - _G. C. Greubel_, Sep 06 2019 %p A053739 with(combinat); seq(fibonacci(n+11)-(n^4 + 22*n^3 + 203*n^2 + 974*n + 2112)/4!, n = 0..35); # _G. C. Greubel_, Sep 06 2019 %t A053739 Table[Fibonacci[n+11] -(n^4+22*n^3+203*n^2+974*n+2112)/4!, {n,0,35}] (* _G. C. Greubel_, Sep 06 2019 *) %o A053739 (PARI) vector(35, n, m=n-1; fibonacci(n+10) - (m^4+22*m^3+203*m^2+974*m +2112)/4!) \\ _G. C. Greubel_, Sep 06 2019 %o A053739 (Magma) [Fibonacci(n+11) - (n^4+22*n^3+203*n^2+974*n+2112)/24: n in [0..35]]; // _G. C. Greubel_, Sep 06 2019 %o A053739 (Sage) [fibonacci(n+11) - (n^4+22*n^3+203*n^2+974*n+2112)/24 for n in (0..35)] # _G. C. Greubel_, Sep 06 2019 %o A053739 (GAP) List([0..35], n-> Fibonacci(n+11)-(n^4+22*n^3+203*n^2+974*n + 2112)/24); # _G. C. Greubel_, Sep 06 2019 %Y A053739 Cf. A014166 and A000045. %Y A053739 Right-hand column 10 of triangle A011794. %Y A053739 Cf. A228074. %K A053739 easy,nonn %O A053739 0,2 %A A053739 _Barry E. Williams_, Feb 13 2000 %E A053739 Terms a(28) onward added by _G. C. Greubel_, Sep 06 2019