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 A081423 #13 Sep 08 2022 08:45:09 %S A081423 1,3,12,34,75,141,238,372,549,775,1056,1398,1807,2289,2850,3496,4233, %T A081423 5067,6004,7050,8211,9493,10902,12444,14125,15951,17928,20062,22359, %U A081423 24825,27466,30288,33297,36499,39900,43506,47323,51357,55614,60100 %N A081423 Subdiagonal of array of n-gonal numbers A081422. %C A081423 One of a family of sequences with palindromic generators. %H A081423 Vincenzo Librandi, <a href="/A081423/b081423.txt">Table of n, a(n) for n = 0..1000</a> %H A081423 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (4,-6,4,-1). %F A081423 a(n) = (2*n^3 + n^2 + n + 2)/2. %F A081423 G.f.: (1 -2*x +7*x^2 -6*x^3)/(1-x)^5. %F A081423 E.g.f.: (2 +4*x +7*x^2 +2*x^3)*exp(x)/2. - _G. C. Greubel_, Aug 14 2019 %p A081423 a := n-> (2*n^3+n^2+n+2)/2; seq(a(n), n = 0..40); # _G. C. Greubel_, Aug 14 2019 %t A081423 CoefficientList[Series[(1 -2x +7x^2 -6x^3)/(1-x)^5, {x,0,40}], x] (* _Vincenzo Librandi_, Aug 08 2013 *) %o A081423 (Magma) [(2*n^3+n^2+n+2)/2: n in [0..40]]; // _Vincenzo Librandi_, Aug 08 2013 %o A081423 (PARI) vector(40, n, n--; (2*n^3+n^2+n+2)/2) \\ _G. C. Greubel_, Aug 14 2019 %o A081423 (Sage) [(2*n^3+n^2+n+2)/2 for n in (0..40)] # _G. C. Greubel_, Aug 14 2019 %o A081423 (GAP) List([0..40], n-> (2*n^3+n^2+n+2)/2); # _G. C. Greubel_, Aug 14 2019 %Y A081423 Cf. A081435, A081436, A081437. %K A081423 nonn,easy %O A081423 0,2 %A A081423 _Paul Barry_, Mar 21 2003