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.

A173961 Averages of two consecutive even cubes: (n^3 + (n+2)^3)/2.

Original entry on oeis.org

4, 36, 140, 364, 756, 1364, 2236, 3420, 4964, 6916, 9324, 12236, 15700, 19764, 24476, 29884, 36036, 42980, 50764, 59436, 69044, 79636, 91260, 103964, 117796, 132804, 149036, 166540, 185364, 205556, 227164, 250236, 274820, 300964, 328716, 358124, 389236, 422100
Offset: 1

Views

Author

Keywords

Examples

			(0^3+2^3)/2=4, (2^3+4^3)/2=36, ...
		

Crossrefs

Programs

  • Magma
    I:=[4, 36, 140, 364]; [n le 4 select I[n] else 4*Self(n-1)-6*Self(n-2)+4*Self(n-3)-Self(n-4): n in [1..40]]; // Vincenzo Librandi, Jul 02 2012
  • Mathematica
    f[n_]:=(n^3+(n+2)^3)/2;Table[f[n],{n,0,5!,2}]
    CoefficientList[Series[(4+20*x+20*x^2+4*x^3)/(1-4*x+6*x^2-4*x^3+x^4),{x,0,40}],x] (* Vincenzo Librandi, Jul 02 2012 *)
  • PARI
    a(n)=4*n*(2*n^2-3*n+3)-4 \\ Charles R Greathouse IV, Jan 02 2012
    

Formula

G.f.: x*(4+20*x+20*x^2+4*x^3)/(1-4*x+6*x^2-4*x^3+x^4). - Colin Barker, Jan 04 2012
a(n) = 8*n^3 - 12*n^2 + 12*n - 4. - Charles R Greathouse IV, Jan 02 2012
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4). - Vincenzo Librandi, Jul 02 2012
a(n) = 4*A005898(n-1).
E.g.f.: 4 + 4*exp(x)*(-1 + 2*x + 3*x^2 + 2*x^3). - Elmo R. Oliveira, Aug 23 2025