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.

This page as a plain text file.
%I A017523 #27 Oct 18 2024 17:27:29
%S A017523 0,1728,13824,46656,110592,216000,373248,592704,884736,1259712,
%T A017523 1728000,2299968,2985984,3796416,4741632,5832000,7077888,8489664,
%U A017523 10077696,11852352,13824000,16003008,18399744,21024576,23887872,27000000,30371328,34012224
%N A017523 a(n) = (12*n)^3.
%H A017523 Vincenzo Librandi, <a href="/A017523/b017523.txt">Table of n, a(n) for n = 0..1000</a>
%H A017523 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (4,-6,4,-1).
%F A017523 G.f.: 1728*x*(1 + 4*x + x^2)/(1 - x)^4. - _Vincenzo Librandi_, Jul 05 2014
%F A017523 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
%t A017523 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 *)
%o A017523 (Maxima) makelist((12*n)^3,n,0,30); /* _Martin Ettl_, Oct 21 2012 */
%o A017523 (Magma) [1728*n^3: n in [0..40]]; // _Vincenzo Librandi_, Jul 05 2014
%o A017523 (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
%Y A017523 Cf. similar sequences listed in A244725.
%K A017523 nonn,easy
%O A017523 0,2
%A A017523 _N. J. A. Sloane_