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 A153260 #21 Oct 18 2022 15:17:08 %S A153260 -27,-47,-67,-81,-83,-67,-27,43,149,297,493,743,1053,1429,1877,2403, %T A153260 3013,3713,4509,5407,6413,7533,8773,10139,11637,13273,15053,16983, %U A153260 19069,21317,23733,26323,29093,32049,35197,38543,42093,45853,49829,54027 %N A153260 a(n) = n^3 - 3*(n+3)^2. %H A153260 Vincenzo Librandi, <a href="/A153260/b153260.txt">Table of n, a(n) for n = 0..10000</a> %H A153260 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (4, -6, 4, -1). %F A153260 a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4); a(0)=-27, a(1)=-47, a(2)=-67, a(3)=-81. - _Harvey P. Dale_, Aug 24 2011 %F A153260 G.f.: (x*(x*(13*x - 41) + 61) - 27)/(x-1)^4. - _Harvey P. Dale_, Aug 24 2011 %F A153260 E.g.f.: (-27 - 20*x + x^3)*exp(x). - _G. C. Greubel_, Nov 10 2018 %t A153260 a[n_]:=n^3-3*(n+3)^2; a/@ Range[0, 50] %t A153260 Table[n^3-3(n+3)^2,{n,0,50}] (* or *) LinearRecurrence[{4,-6,4,-1},{-27,-47,-67,-81},51] (* _Harvey P. Dale_, Aug 24 2011 *) %o A153260 (Magma)[n^3-3*(n+3)^2: n in [0..40] ]; // _Vincenzo Librandi_, Aug 25 2011 %o A153260 (PARI) vector(40, n, n--; n^3-3*(n+3)^2) \\ _G. C. Greubel_, Nov 10 2018 %Y A153260 Cf. A045991, A081437, A069778, A153257, A153258, A153259. %K A153260 sign,easy %O A153260 0,1 %A A153260 _Vladimir Joseph Stephan Orlovsky_, Dec 22 2008 %E A153260 Offset changed from 1 to 0 by _Vincenzo Librandi_, Aug 25 2011