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.

A061000 a(n) = Sum_{k=1..n} A060999(k) * k^3.

Original entry on oeis.org

0, 8, 89, 537, 2287, 7471, 20505, 49689, 108738, 219738, 416726, 748502, 1284570, 2121490, 3387115, 5250795, 7933293, 11712429, 16938987, 24050987, 33580556, 46177140, 62626924, 83860588, 110985588, 145311516, 188358237, 241899165
Offset: 1

Views

Author

N. J. A. Sloane, May 15 2001

Keywords

Comments

Original name: x.v where x = first n terms of A060999, v = [1,8,27,...,n^3].

Examples

			a(3) = 0*1 + 1*8 + 3*27 = 89.
		

Crossrefs

Programs

  • Mathematica
    nn=30;With[{c=Range[nn]^3,d=Table[Floor[(n+1)^3/9+1/2],{n,0,nn-1}]},Table[Take[c,n].Take[d,n],{n,nn}]] (* Harvey P. Dale, Jan 20 2013 *)

Formula

a(n) = Sum_{k=1..n} A060999(k) * A000578(k). - Sean A. Irvine, Jan 13 2023