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 A174532 #23 Sep 08 2022 08:45:51 %S A174532 0,0,0,0,0,1,0,1,0,1,1,0,2,-1,3,-1,2,1,-1,5,-5,8,-6,6,0,-4,13,-18,25, %T A174532 -24,21,-7,-10,36,-59,81,-87,78,-41,-17,99,-185,264,-304,288,-188,4, %U A174532 261,-564,853,-1040,1045,-783,220,634,-1673,2719 %N A174532 Expansion of x^5/((1-x)*(1+x-x^5)). %F A174532 a(n) = first component of v(n) = M^n v(0), where v(0)=[0,0,0,0,0,1] and %F A174532 M = {{0, 1, 0, 0, 0, 0}, %F A174532 {0, 0, 1, 0, 0, 0}, %F A174532 {0, 0, 0, 1, 0, 0}, %F A174532 {0, 0, 0, 0, 1, 0}, %F A174532 {0, 0, 0, 0, 0, 1}, %F A174532 {-1, 1, 0, 0, 1, 0}}. %t A174532 M = {{0, 1, 0, 0, 0, 0}, %t A174532 {0, 0, 1, 0, 0, 0}, %t A174532 {0, 0, 0, 1, 0, 0}, %t A174532 {0, 0, 0, 0, 1, 0}, %t A174532 {0, 0, 0, 0, 0, 1}, %t A174532 {-1, 1, 0, 0, 1, 0}}; %t A174532 v[0] = Table[If[n == 6, 1, 0], {n, 1, 6}] %t A174532 v[n_] := v[n] = M.v[n - 1]; %t A174532 b = Table[v[n][[1]], {n, 0, 50}] %t A174532 CoefficientList[Series[x^5/((1-x)(1+x-x^5)),{x,0,60}],x] (* _Harvey P. Dale_, May 15 2021 *) %o A174532 (Magma) M:=Matrix([[0, 1, 0, 0, 0, 0], [0, 0, 1, 0, 0, 0], [0, 0, 0, 1, 0, 0], [0, 0, 0, 0, 1, 0], [0, 0, 0, 0, 0, 1], [-1, 1, 0, 0, 1, 0]]); V:=Matrix([[0],[0],[0],[0],[0],[1]]); [ (M^n*V)[1][1]: n in [0..60] ]; // _Klaus Brockhaus_, Nov 30 2010 %Y A174532 Cf. A174522. %K A174532 sign,easy,less %O A174532 0,13 %A A174532 _Roger L. Bagula_, Nov 28 2010