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.

A017523 a(n) = (12*n)^3.

Original entry on oeis.org

0, 1728, 13824, 46656, 110592, 216000, 373248, 592704, 884736, 1259712, 1728000, 2299968, 2985984, 3796416, 4741632, 5832000, 7077888, 8489664, 10077696, 11852352, 13824000, 16003008, 18399744, 21024576, 23887872, 27000000, 30371328, 34012224
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. similar sequences listed in A244725.

Programs

  • Magma
    [1728*n^3: n in [0..40]]; // Vincenzo Librandi, Jul 05 2014
    
  • Magma
    I:=[0,1728,13824, 46656]; [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
  • Mathematica
    Table[1728 n^3, {n, 0, 40}] (* or *) CoefficientList[Series[1728 x (1 + 4 x + x^2)/(1 - x)^4, {x, 0, 40}], x] (* Vincenzo Librandi, Jul 05 2014 *)
  • Maxima
    makelist((12*n)^3,n,0,30); /* Martin Ettl, Oct 21 2012 */
    

Formula

G.f.: 1728*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