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.

A017211 a(n) = (9*n + 4)^3.

This page as a plain text file.
%I A017211 #24 May 26 2024 01:16:41
%S A017211 64,2197,10648,29791,64000,117649,195112,300763,438976,614125,830584,
%T A017211 1092727,1404928,1771561,2197000,2685619,3241792,3869893,4574296,
%U A017211 5359375,6229504,7189057,8242408
%N A017211 a(n) = (9*n + 4)^3.
%H A017211 Vincenzo Librandi, <a href="/A017211/b017211.txt">Table of n, a(n) for n = 0..10000</a>
%H A017211 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (4,-6,4,-1).
%F A017211 a(n) = A017209(n)^3 = A000578(A017209(n)). - _Wesley Ivan Hurt_, Jan 22 2014
%F A017211 G.f.: (64+1941*x+2244*x^2+125*x^3)/(x-1)^4. - _R. J. Mathar_, Jul 14 2016
%F A017211 a(n) = 4*a(n-1)-6*a(n-2)+4*a(n-3)-a(n-4). - _Wesley Ivan Hurt_, May 26 2024
%p A017211 A017211:=n->(9*n+4)^3; seq(A017211(n), n=0..35); # _Wesley Ivan Hurt_, Jan 22 2014
%t A017211 Table[(9n+4)^3, {n, 0, 35}] (* _Wesley Ivan Hurt_, Jan 22 2014 *)
%t A017211 LinearRecurrence[{4,-6,4,-1},{64,2197,10648,29791},30] (* _Harvey P. Dale_, Jan 21 2017 *)
%o A017211 (Magma) [(9*n+4)^3: n in [0..35]]; // _Vincenzo Librandi_, Jul 25 2011
%Y A017211 Cf. A000578 (n^3), A017209 (9*n+4).
%K A017211 nonn,easy
%O A017211 0,1
%A A017211 _N. J. A. Sloane_