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 A027379 #50 Dec 27 2022 15:02:34 %S A027379 1,3,7,12,18,25,33,42,52,63,75,88,102,117,133,150,168,187,207,228,250, %T A027379 273,297,322,348,375,403,432,462,493,525,558,592,627,663,700,738,777, %U A027379 817,858,900,943,987,1032,1078 %N A027379 Expansion of (1+x^2-x^3)/(1-x)^3. %H A027379 G. C. Greubel, <a href="/A027379/b027379.txt">Table of n, a(n) for n = 0..1000</a> %H A027379 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (3,-3,1). %F A027379 a(n) = n*(n+5)/2 = A000217(n+2) - 3 for n>=1. - _Emeric Deutsch_, Mar 01 2004 %F A027379 a(n) = n + a(n-1) + 2, n>1. - _Vincenzo Librandi_, Dec 06 2009 %F A027379 E.g.f.: 1 + x*(x + 6)*exp(x)/2. - _G. C. Greubel_, May 14 2017 %o A027379 (PARI) a(n)=if(n,n*(n+5)/2,1) \\ _Charles R Greathouse IV_, Jun 11 2015 %o A027379 (Magma) [n eq 0 select 1 else n*(n+5)/2: n in [0..50]]; // _G. C. Greubel_, Jul 31 2022 %o A027379 (SageMath) [n*(n+5)/2 + bool(n==0) for n in (0..50)] # _G. C. Greubel_, Jul 31 2022 %Y A027379 Essentially the triangular numbers (A000217) minus 3. %Y A027379 Also essentially the same as A055998. %Y A027379 Cf. A000217, A034856, A046691. %K A027379 nonn,easy %O A027379 0,2 %A A027379 _N. J. A. Sloane_