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 A053438 #29 Sep 08 2022 08:45:00 %S A053438 1,2,3,6,7,10,11,14,15,18,19,22,23,26,27,30,31,34,35,38,39,42,43,46, %T A053438 47,50,51,54,55,58,59,62,63,66,67,70,71,74,75,78,79,82,83,86,87,90,91, %U A053438 94,95,98,99,102,103,106,107,110,111,114,115,118,119,122 %N A053438 Expansion of (1+x+2*x^3)/((1-x)*(1-x^2)). %H A053438 G. C. Greubel, <a href="/A053438/b053438.txt">Table of n, a(n) for n = 0..5000</a> %H A053438 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (1,1,-1). %F A053438 a(n) = 2*n -(1+(-1)^n)/2 if n>=1. - _Frank Ellermann_, Feb 12 2002 %F A053438 a(n) = A042964(n), n>0. - _R. J. Mathar_, Oct 13 2008 %F A053438 a(n) = A014601(n) - 1 for n>0. - _Hugo Pfoertner_, Oct 26 2020 %p A053438 A053438 := proc(n) %p A053438 if n > 0 then %p A053438 2*n -(1+(-1)^n)/2 ; %p A053438 else %p A053438 1 ; %p A053438 end if %p A053438 end proc: %p A053438 seq(A053438(n),n=0..30) ; # _R. J. Mathar_, Oct 27 2020 %t A053438 CoefficientList[Series[(1+x+2*x^3)/((1-x)*(1-x^2)), {x, 0, 50}], x] (* or *) Join[{1}, LinearRecurrence[{1,1,-1}, {2,3,6}, 50]] (* _G. C. Greubel_, May 26 2018 *) %o A053438 (PARI) a(n)=abs(n\2*4+n%2*3-1) \\ _Charles R Greathouse IV_, Dec 08 2011 %o A053438 (Magma) I:=[2,3,6]; [1] cat [n le 3 select I[n] else Self(n-1) +Self(n-2) -Self(n-3): n in [1..30]]; // _G. C. Greubel_, May 26 2018 %Y A053438 Cf. A010684 (first differences), A263511 (partial sums). %K A053438 nonn,easy %O A053438 0,2 %A A053438 _N. J. A. Sloane_, Jan 12 2000