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 A254645 #53 Sep 08 2022 08:46:11 %S A254645 1,68,995,7672,40614,166992,571626,1701480,4534959,11050468,24997973, %T A254645 53113424,106959580,205628736,379603812,676144944,1166649837, %U A254645 1956528420,3198236503,5108229896,7988730530,12255340240 %N A254645 Fourth partial sums of sixth powers (A001014). %H A254645 Luciano Ancora, <a href="/A254645/b254645.txt">Table of n, a(n) for n = 1..1000</a> %H A254645 Luciano Ancora, <a href="/A254640/a254640_1.pdf">Partial sums of m-th powers with Faulhaber polynomials</a> %H A254645 Luciano Ancora, <a href="/A254645/a254645_2.pdf"> Pascal’s triangle and recurrence relations for partial sums of m-th powers </a> %H A254645 <a href="/index/Rec#order_11">Index entries for linear recurrences with constant coefficients</a>, signature (11,-55,165,-330,462,-462,330,-165,55,-11,1). %F A254645 G.f.: x*(1 + 57*x + 302*x^2 + 302*x^3 + 57*x^4 + x^5)/(1 - x)^11. %F A254645 a(n) = n*(1 + n)*(2 + n)^2*(3 + n)*(4 + n)*(- 1 - 8*n + 14*n^2 + 8*n^3 + n^4)/5040. %F A254645 a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) + n^6. %e A254645 First differences: 1, 63, 665, 3367, 11529, 31031, ... (A022522) %e A254645 -------------------------------------------------------------------------- %e A254645 The sixth powers: 1, 64, 729, 4096, 15625, 46656, ... (A001014) %e A254645 -------------------------------------------------------------------------- %e A254645 First partial sums: 1, 65, 794, 4890, 20515, 67171, ... (A000540) %e A254645 Second partial sums: 1, 66, 860, 5750, 26265, 93436, ... (A101093) %e A254645 Third partial sums: 1, 67, 927, 6677, 32942, 126378, ... (A101099) %e A254645 Fourth partial sums: 1, 68, 995, 7672, 40614, 166992, ... (this sequence) %p A254645 seq(binomial(n+4,5)*(n+2)*((n^2+4*n-1)^2-2)/42, n=1..30); # _G. C. Greubel_, Aug 28 2019 %t A254645 Table[n (1 + n) (2 + n)^2 (3 + n) (4 + n) (- 1 - 8 n + 14 n^2 + 8 n^3 + n^4)/5040, {n, 22}] (* or *) %t A254645 Accumulate[Accumulate[Accumulate[Accumulate[Range[22]^6]]]] (* or *) %t A254645 CoefficientList[Series[(- 1 - 57 x - 302 x^2 - 302 x^3 - 57 x^4 - x^5)/(- 1 + x)^11, {x, 0, 21}], x] %t A254645 Nest[Accumulate,Range[30]^6,4] (* or *) LinearRecurrence[{11,-55,165,-330,462,-462,330,-165,55,-11,1},{1,68,995,7672,40614,166992,571626,1701480,4534959,11050468,24997973},30] (* _Harvey P. Dale_, Dec 27 2015 *) %o A254645 (PARI) vector(30, n, binomial(n+4,5)*(n+2)*((n^2+4*n-1)^2-2)/42) \\ _G. C. Greubel_, Aug 28 2019 %o A254645 (Magma) [Binomial(n+4,5)*(n+2)*((n^2+4*n-1)^2-2)/42: n in [1..30]]; // _G. C. Greubel_, Aug 28 2019 %o A254645 (Sage) [binomial(n+4,5)*(n+2)*((n^2+4*n-1)^2-2)/42 for n in (1..30)] # _G. C. Greubel_, Aug 28 2019 %o A254645 (GAP) List([1..30], n-> Binomial(n+4,5)*(n+2)*((n^2+4*n-1)^2-2)/42); # _G. C. Greubel_, Aug 28 2019 %Y A254645 Cf. A000540, A001014, A022522, A101093, A101099. %Y A254645 Cf. A254644 (fourth partial sums of fifth powers), A254646 (fourth partial sums of seventh powers). %K A254645 nonn,easy %O A254645 1,2 %A A254645 _Luciano Ancora_, Feb 05 2015