The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A016911 a(n) = (6*n)^3. 7
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Volume of a cube with side 6*n. - Wesley Ivan Hurt, Jul 05 2014
LINKS
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
EXAMPLE
a(1) = (6*1)^3 = 216.
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 *)
PROG
(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
CROSSREFS
Cf. similar sequences listed in A244725.
Sequence in context: A016863 A033698 A121683 * A370693 A323801 A222694
KEYWORD
nonn,easy
AUTHOR
STATUS
approved

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 May 13 02:41 EDT 2024. Contains 372497 sequences. (Running on oeis4.)