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!)
A089069 Let m0 be the matrix {{0,1,0},{0,1,1},{1,0,-q}}, m1={{0,1,0},{0,0,1},{1,1,q1}}; if n even a(n) = (3,3)-element of m[n-1]*m0, if n odd a(n) = (3,3)-element of m[n-1]*m1. 0
0, 0, 2, -2, -1, 0, 0, 0, 1, -1, -1, 0, 0, 0, 1, -1, -1, 0, 0, 0, 1, -1, -1, 0, 0, 0, 1, -1, -1, 0, 0, 0, 1, -1, -1, 0, 0, 0, 1, -1, -1, 0, 0, 0, 1, -1, 0, 1, 0, 0, 2, -2, -1, 0, 0, 0, 1, -2, -1, 0, 0, 0, 1, -1, 0, 1, 3, -2, 1, 0, 0, 1, 3, -2, 1, 0, 0, 1, 3, -2, 1, 0, 0, 1, 3, -2, 1, 0, 0, 1, 3, -2, 1, 0, 0, 1, 3, -2, 1, 0, 0, 1, 3, -2, 1, 0, 0, 1, 3, -2, 1, 0, 0, 1, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Alternating even-odd matrix recursive sequence using the x^3-x^2-x-1=0 Pisot balanced by the x^3-x-1=0 minimal Pisot.
A new minimal Pisot recursive matrix developed with eigenvalue equation x^3-x-1=0 using the Blackmore-Kappraff "bonacci" matrix as the pattern.
LINKS
MATHEMATICA
(* Adamson's matrix functions alternating x^3 Pisot and minimal Pisot*) digits=200 Solve[x^3-x-1==0, x] k=positive root of minimal Pisot q=N[k^2-1/k, 20] m0={{0, 1, 0}, {0, 1, 1}, {1, 0, -q}} NSolve[x^3-x^2-x-1==0, x] k1=1.83928675521416113 q1=k1^2-k1-1/k1 m1={{0, 1, 0}, {0, 0, 1}, {1, 1, q1}} m[n_Integer?Positive] := If[Mod[n, 2]==0, m[n-1].m0, m[n-1].m1] m[0] = {{1, 0, 0}, {0, 1, 0}, {0, 0, 1}} a=Table[Floor[m[n][[3, 3]]], {n, 1, digits}]
CROSSREFS
Sequence in context: A219494 A334221 A368842 * A143535 A301366 A250100
KEYWORD
sign
AUTHOR
Roger L. Bagula, Dec 03 2003
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 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)