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.

A296363 a(1)=0; for n>1, a(n) = 4*n^3 - 3*n^2 - 3*n + 4.

This page as a plain text file.
%I A296363 #13 Oct 18 2022 15:25:59
%S A296363 0,18,76,200,414,742,1208,1836,2650,3674,4932,6448,8246,10350,12784,
%T A296363 15572,18738,22306,26300,30744,35662,41078,47016,53500,60554,68202,
%U A296363 76468,85376,94950,105214,116192,127908,140386,153650,167724,182632,198398,215046,232600
%N A296363 a(1)=0; for n>1, a(n) = 4*n^3 - 3*n^2 - 3*n + 4.
%C A296363 This was once thought (mistakenly) to be a formula for A262402.
%H A296363 Peter Kagey, <a href="/A296363/b296363.txt">Table of n, a(n) for n = 1..10000</a>
%H A296363 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (4, -6, 4, -1).
%F A296363 G.f.: -2 * (x^3-2*x^2-2*x-9) * x^2 / (x-1)^4.
%t A296363 CoefficientList[Series[- 2 x (x^3 - 2 x^2 - 2 x - 9)/(x - 1)^4, {x, 0, 30}], x] (* _Vincenzo Librandi_, Sep 23 2015 *)
%t A296363 Join[{0},LinearRecurrence[{4, -6, 4, -1},{18, 76, 200, 414},38]] (* _Ray Chandler_, Sep 23 2015 *)
%t A296363 Join[{0},Table[4n^3-3n^2-3n+4,{n,2,40}]] (* _Harvey P. Dale_, Mar 28 2019 *)
%o A296363 (Magma) [0] cat [4*n^3-3*n^2-3*n+4: n in [2..40]]; // _Vincenzo Librandi_, Sep 23 2015
%o A296363 (PARI) a(n)=if(n>1, 4*n^3 - 3*n^2 - 3*n + 4, 0) \\ _Charles R Greathouse IV_, Oct 18 2022
%Y A296363 Cf. A262402.
%K A296363 nonn,easy
%O A296363 1,2
%A A296363 _N. J. A. Sloane_, Dec 16 2017