# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a123126 Showing 1-1 of 1 %I A123126 #23 Sep 08 2022 08:45:28 %S A123126 1,1,4,1,31,22,1,33,4,141,199,10,209,113,604,1473,375,1174,1521,2721, %T A123126 9580,5501,6671,14346,15681,57409,56596,44577,112463,119382,333313, %U A123126 480641,360628,800973,1007191,1988362,3628369,3160689,5525420,8309793 %N A123126 Absolute value of coefficient of X^2 in the characteristic polynomial of the n-th power of the matrix M = {{1,1,1,1,1}, {1,0,0,0,0}, {0,1,0,0,0}, {0,0,1,0,0}, {0,0,0,1,0}}. %C A123126 Let P(x) = X^5 - X^4 - X^3 - X^2 - X - 1 and X1, X2, X3, X4, X5 its roots. Then a(n) = (X1*X2*X3)^n + (X1*X2*X4)^n + (X1*X2*X5)^n + ... + (X3*X4*X5)^n. %H A123126 G. C. Greubel, Table of n, a(n) for n = 1..1000 %F A123126 G.f.: x*(1 +3*x^2 -4*x^3 +30*x^4 -18*x^5 -21*x^6 -16*x^7 -9*x^8 -10*x^9)/(1 -x -x^3 +x^4 -6*x^5 +3*x^6 +3*x^7 +2*x^8 +x^9 +x^10). - _Colin Barker_, May 16 2013 %e A123126 a(5) = 31 because the characteristic polynomial of M^5 is X^5 - 31*X^4 + 49*X^3 - 31*X^2 + 9*X - 1. %p A123126 with(linalg): M[1]:=matrix(5,5,[1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0]): for n from 2 to 45 do M[n]:=multiply(M[n-1],M[1]) od: seq(-coeff(charpoly(M[n],x),x,2),n=1..45); # _Emeric Deutsch_ %t A123126 f[n_]:= CoefficientList[CharacteristicPolynomial[MatrixPower[{{1,1,1,1,1}, {1,0,0, 0,0}, {0,1,0,0,0}, {0,0,1,0,0}, {0,0,0,1,0}}, n], x], x][[3]]; Array[f, 40] (* _Robert G. Wilson v_ *) %o A123126 (Magma) R:=PowerSeriesRing(Integers(), 40); Coefficients(R!( x*(1 +3*x^2 -4*x^3 +30*x^4 -18*x^5 -21*x^6 -16*x^7 -9*x^8 -10*x^9)/(1 -x -x^3 +x^4 -6*x^5 +3*x^6 +3*x^7 +2*x^8 +x^9 +x^10) )); // _G. C. Greubel_, Aug 03 2021 %o A123126 (Sage) %o A123126 def A123126_list(prec): %o A123126 P. = PowerSeriesRing(ZZ, prec) %o A123126 return P( x*(1 +3*x^2 -4*x^3 +30*x^4 -18*x^5 -21*x^6 -16*x^7 -9*x^8 -10*x^9)/(1 -x -x^3 +x^4 -6*x^5 +3*x^6 +3*x^7 +2*x^8 +x^9 +x^10) ).list() %o A123126 a=A123126_list(40); a[1:] # _G. C. Greubel_, Aug 03 2021 %Y A123126 Cf. A074048, A123127. %K A123126 nonn %O A123126 1,3 %A A123126 _Artur Jasinski_, Sep 30 2006 %E A123126 Edited by _N. J. A. Sloane_, Oct 24 2006 %E A123126 More terms from _Emeric Deutsch_ and _Robert G. Wilson v_, Oct 24 2006 # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE