Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A122187
First row sum of the matrix M^n, where M is the 3 X 3 matrix [[6, 5, 3], [5, 4, 2], [3, 2, 1]] (n>=0).
0
1, 14, 157, 1782, 20216, 229347, 2601899, 29518061, 334876920, 3799116465, 43100270734, 488964567014, 5547212203625, 62932092237197, 713952898856653, 8099663044168346, 91889172989041221, 1042465602157270162
OFFSET
1,2
FORMULA
a(n) = 11a(n-1)+4a(n-2)-a(n-3), a(0)=1, a(1)=14, a(2)=157 (derived from the minimal polynomial of the matrix M).
G.f.: -x*(x^2-3*x-1) / (x^3-4*x^2-11*x+1). [Colin Barker, Dec 07 2012]
MAPLE
a[0]:=1: a[1]:=14: a[2]:=157: for n from 3 to 20 do a[n]:=11*a[n-1]+4*a[n-2]-a[n-3] od: seq(a[n], n=0..20);
MATHEMATICA
M = {{6, 5, 3}, {5, 4, 2}, {3, 2, 1}}; v[1] = {1, 1, 1}; v[n_] := v[n] = M.v[n - 1]; a1 = Table[v[n][[1]], {n, 1, 50}]
LinearRecurrence[{11, 4, -1}, {1, 14, 157}, 30] (* Harvey P. Dale, Oct 18 2022 *)
CROSSREFS
Cf. A015448.
Sequence in context: A238770 A199703 A144166 * A268946 A343093 A229611
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Edited by N. J. A. Sloane, Oct 29 2006
STATUS
approved