login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A254646 Fourth partial sums of seventh powers (A001015). 6

%I #53 Sep 08 2022 08:46:11

%S 1,132,2709,26432,168126,804552,3136014,10459968,30856839,82407052,

%T 202678203,465069696,1005729452,2066218896,4058958828,7664805504,

%U 13974953853,24692818836,42415687153,71020845504,116186669130,186085891160,292296070170,450981236160,684408934755

%N Fourth partial sums of seventh powers (A001015).

%H Luciano Ancora, <a href="/A254646/b254646.txt">Table of n, a(n) for n = 1..1000</a>

%H Luciano Ancora, <a href="/A254640/a254640_1.pdf">Partial sums of m-th powers with Faulhaber polynomials</a>

%H Luciano Ancora, <a href="/A254646/a254646_2.pdf"> Pascal’s triangle and recurrence relations for partial sums of m-th powers </a>

%H <a href="/index/Rec#order_12">Index entries for linear recurrences with constant coefficients</a>, signature (12,-66,220,-495,792,-924,792,-495,220,-66,12,-1).

%F G.f.: x*(1 +120*x +1191*x^2 +2416*x^3 +1191*x^4 +120*x^5 +x^6)/(1-x)^12.

%F a(n) = n*(1 + n)*(2 + n)*(3 + n)*(4 + n)*(48 - 100*n - 89*n^2 + 160*n^3 + 140*n^4 + 36*n^5 + 3*n^6)/23760.

%F a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) + n^7.

%e First differences: 1, 127, 2059, 14197, 61741, ... (A022523)

%e ----------------------------------------------------------------------

%e The seventh powers: 1, 128, 2187, 16384, 78125, ... (A001015)

%e ----------------------------------------------------------------------

%e First partial sums: 1, 129, 2316, 18700, 96825, ... (A000541)

%e Second partial sums: 1, 130, 2446, 21146, 117971, ... (A250212)

%e Third partial sums: 1, 131, 2577, 23723, 141694, ... (A254641)

%e Fourth partial sums: 1, 132, 2709, 26432, 168126, ... (this sequence)

%p seq(binomial(n+4,5)*(3*(n+2)^6 -40*(n+2)^4 +151*(n+2)^2 -108)/198, n=1..30); # _G. C. Greubel_, Aug 28 2019

%t Table[n (1 + n) (2 + n) (3 + n) (4 + n) (48 - 100 n - 89 n^2 + 160 n^3 + 140 n^4 + 36 n^5 + 3 n^6)/23760, {n, 20}] (* or *)

%t Accumulate[Accumulate[Accumulate[Accumulate[Range[20]^7]]]] (* or *)

%t CoefficientList[Series[(1 + 120 x + 1191 x^2 + 2416 x^3 + 1191 x^4 + 120 x^5 + x^6)/(- 1 + x)^12, {x, 0, 19}], x]

%o (PARI) a(n)=n*(1+n)*(2+n)*(3+n)*(4+n)*(48-100*n-89*n^2+160*n^3+140*n^4 +36*n^5+3*n^6)/23760 \\ _Charles R Greathouse IV_, Oct 07 2015

%o (Magma) [Binomial(n+4,5)*(3*(n+2)^6 -40*(n+2)^4 +151*(n+2)^2 -108)/198: n in [1..30]]; // _G. C. Greubel_, Aug 28 2019

%o (Sage) [binomial(n+4,5)*(3*(n+2)^6 -40*(n+2)^4 +151*(n+2)^2 -108)/198 for n in (1..30)] # _G. C. Greubel_, Aug 28 2019

%o (GAP) List([1..30], n-> Binomial(n+4,5)*(3*(n+2)^6 -40*(n+2)^4 +151*(n+2)^2 -108)/198); # _G. C. Greubel_, Aug 28 2019

%Y Cf. A000541, A001015, A022523, A250212, A254641, A254645.

%K nonn,easy

%O 1,2

%A _Luciano Ancora_, Feb 05 2015

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 11:59 EDT 2024. Contains 371254 sequences. (Running on oeis4.)