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.
%I A244727 #26 Jun 15 2025 18:27:36 %S A244727 0,7,56,189,448,875,1512,2401,3584,5103,7000,9317,12096,15379,19208, %T A244727 23625,28672,34391,40824,48013,56000,64827,74536,85169,96768,109375, %U A244727 123032,137781,153664,170723,189000,208537,229376,251559,275128,300125,326592,354571,384104 %N A244727 a(n) = 7*n^3. %C A244727 After 0, subsequence of A038855. %C A244727 Volume of a truncated square pyramid with base lengths n and 2n, and height 3n. - _Wesley Ivan Hurt_, Apr 05 2016 %H A244727 Vincenzo Librandi, <a href="/A244727/b244727.txt">Table of n, a(n) for n = 0..1000</a> %H A244727 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (4,-6,4,-1). %F A244727 G.f.: 7*x*(1 + 4*x + x^2)/(1 - x)^4. %F A244727 a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) for n>3. %F A244727 E.g.f.: 7*exp(x)*x*(1 + 3*x + x^2). - _Stefano Spezia_, May 09 2023 %p A244727 A244727:=n->7*n^3: seq(A244727(n), n=0..100); # _Wesley Ivan Hurt_, Apr 05 2016 %t A244727 Table[7 n^3, {n, 0, 40}] (* or *) CoefficientList[Series[7 x (1 + 4 x + x^2)/(1 - x)^4, {x, 0, 40}], x] %t A244727 7 Range[0, 50]^3 (* _Wesley Ivan Hurt_, Apr 05 2016 *) %t A244727 LinearRecurrence[{4,-6,4,-1},{0,7,56,189},40] (* _Harvey P. Dale_, Apr 04 2024 *) %o A244727 (Magma) [7*n^3: n in [0..40]]; %o A244727 (Magma) I:=[0,7,56,189]; [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]]; %Y A244727 Cf. A038855. %Y A244727 Cf. similar sequences listed in A244725. %K A244727 nonn,easy %O A244727 0,2 %A A244727 _Vincenzo Librandi_, Jul 05 2014