login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A249580 List of quadruples (r,s,t,u): the matrix M = [[4,12,9][2,5,3][1,2,1]] is raised to successive negative powers, then (r,s,t,u) are the square roots of M[1,3], M[1,1], M[3,3], M[3,1] respectively. 4
3, -1, -2, 1, -9, 4, 7, -3, 30, -13, -23, 10, -99, 43, 76, -33, 327, -142, -251, 109, -1080, 469, 829, -360, 3567, -1549, -2738, 1189, -11781, 5116, 9043, -3927, 38910, -16897, -29867, 12970, -128511, 55807, 98644, -42837 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The sequence, in reverse order, comprises numbers to the left of a(0) in A249579, where the terms would be labeled a(-1), a(-2), a(-3), ... .
This sequence 'factors' into four sequences with alternating signs. Ignoring signage, they are A052906, A003688, A052924 and A006190 (listed as crossrefs below).
LINKS
Russell Walsmith, A sequence of matrices
FORMULA
a(n) = -3*a(n-4)+a(n-8). - Colin Barker, Nov 06 2014
G.f.: -x*(x^6+x^5+x^3-2*x^2-x+3) / (x^8-3*x^4-1). - Colin Barker, Nov 06 2014
EXAMPLE
M^-1 = [[1,-6,9][-1,5,-6][1,-4,4]]. sqrt(M[1,3]) = 3, sqrt(M[1,1]) = -1, sqrt(M[3,3]) = -2, sqrt(M[3,1]) = 1. Then r = 3; s = -1; t = -2; ; u = 1.
M^-2 = [[16,-72,81][-12,55,-63][9,-42,49]]. sqrt(M[1,3]) = -9, sqrt(M[1,1]) = 4, sqrt(M[3,3]) = 7, sqrt(M[3,1]) = -3. Then r = -9; s = 4; t = 7; ; u = -3.
MATHEMATICA
m[e_] := MatrixPower[{{4, 12, 9}, {2, 5, 3}, {1, 2, 1}}, -e]; g[e_, x_, y_] := (-1)^If[x == y, e, e + 1] Sqrt@ m[e][[x, y]]; f[e_] := {g[e, 1, 3], g[e, 1, 1], g[e, 3, 3], g[e, 3, 1]}; Array[f, 10] // Flatten (* Robert G. Wilson v, Dec 19 2014 *)
PROG
(PARI) Vec(-x*(x^6+x^5+x^3-2*x^2-x+3)/(x^8-3*x^4-1) + O(x^100)) \\ Colin Barker, Nov 06 2014
CROSSREFS
Cf. A249579. Disregarding signage, a(4n) = A052906; a(4n+1) = A003688; a(4n+2) = A052924; a(4n+3) = A006190.
Sequence in context: A349620 A349380 A351425 * A340147 A011086 A321889
KEYWORD
sign,easy
AUTHOR
Russell Walsmith, Nov 02 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 04:35 EDT 2024. Contains 371782 sequences. (Running on oeis4.)