cp's OEIS Frontend

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.

Showing 1-1 of 1 results.

A262925 Sum of n consecutive fourth powers starting with n^4.

Original entry on oeis.org

0, 1, 97, 962, 4578, 14979, 38995, 86996, 173636, 318597, 547333, 891814, 1391270, 2092935, 3052791, 4336312, 6019208, 8188169, 10941609, 14390410, 18658666, 23884427, 30220443, 37834908, 46912204, 57653645, 70278221, 85023342, 102145582, 121921423
Offset: 0

Views

Author

Colin Barker, Oct 04 2015

Keywords

Examples

			a(3) = 3^4 + 4^4 + 5^4 = 962.
		

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{6,-15,20,-15,6,-1},{0,1,97,962,4578,14979},30] (* Harvey P. Dale, Jul 30 2017 *)
  • PARI
    vector(40, n, n--; sum(k=n, 2*n-1, k^4))
    
  • PARI
    concat(0, Vec(x*(16*x^4+241*x^3+395*x^2+91*x+1)/(x-1)^6 + O(x^40)))

Formula

a(n) = n*(-1+70*n^2-225*n^3+186*n^4)/30.
G.f.: x*(16*x^4+241*x^3+395*x^2+91*x+1) / (x-1)^6.
Showing 1-1 of 1 results.