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.

A016911 a(n) = (6*n)^3.

Original entry on oeis.org

0, 216, 1728, 5832, 13824, 27000, 46656, 74088, 110592, 157464, 216000, 287496, 373248, 474552, 592704, 729000, 884736, 1061208, 1259712, 1481544, 1728000, 2000376, 2299968, 2628072, 2985984, 3375000, 3796416, 4251528, 4741632, 5268024, 5832000
Offset: 0

Views

Author

Keywords

Comments

Volume of a cube with side 6*n. - Wesley Ivan Hurt, Jul 05 2014

Examples

			a(1) = (6*1)^3 = 216.
		

Crossrefs

Cf. similar sequences listed in A244725.

Programs

  • Magma
    [(6*n)^3: n in [0..40]]; // Vincenzo Librandi, May 03 2011
    
  • Magma
    I:=[0,216,1728,5832]; [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 05 2014
  • Maple
    A016911:=n->216*n^3: seq(A016911(n), n=0..40); # Wesley Ivan Hurt, Jul 05 2014
  • Mathematica
    Table[216 n^3, {n, 0, 40}] (* or *) CoefficientList[Series[216 x (1 + 4 x + x^2)/(1 - x)^4, {x, 0, 40}], x] (* Vincenzo Librandi, Jul 05 2014 *)

Formula

G.f.: 216*x*(1 + 4*x + x^2)/(1 - x)^4. - Vincenzo Librandi, Jul 05 2014
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) for n>3. - Vincenzo Librandi, Jul 05 2014
a(n) = 216 * A000578(n). - Wesley Ivan Hurt, Jul 05 2014
Sum_{n>=1} 1/a(n) = zeta(3)/216. - Amiram Eldar, Oct 02 2020