The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A098082 M={{0,1,0},{0,0,1},{1,1,0}} M0=M-IdentityMatrix[3] Det[M0] A[n_]:=M0.A[n-1]; A[0]:={{0,1,1},{1,1,1},{1,1,2}}; 0
0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 2, 2, 2, 1, 0, 3, 4, 3, 4, 3, 4, 3, 1, 3, 7, 7, 7, 7, 4, 7, 4, 0, 10, 14, 11, 14, 11, 4, 11, 4, 3, 24, 25, 15, 25, 15, 1, 15, 1, 10, 49, 40, 16, 40, 16, 9, 16, 9, 24, 89, 56, 7, 56, 7, 33, 7, 33, 49, 145 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,9
COMMENTS
Minimal Pisot generator matrix minus identity 3 X 3 Markov sequence.
The minimal Pisot generator matrix M has identity: M^3-M-I=0 Which suggests the binomial forms as Markovs: (M+I)^n=M^(3*n) (M-1)^n=Sum[(-1)^m*C(n,m)*M^(n-m),{m,0,n}] There seems to be a near Matrix Ring type behavior of these Matrices with I.
LINKS
MATHEMATICA
(*Minimal Pisot generator matrix minus identity 3 X 3 Markov sequence*) Clear[x, M, A] digits=21 M={{0, 1, 0}, {0, 0, 1}, {1, 1, 0}} M0=M-IdentityMatrix[3] Det[M0] A[n_]:=M0.A[n-1]; A[0]:={{0, 1, 1}, {1, 1, 1}, {1, 1, 2}}; (* flattened sequence of 3 X 3 matrices made with an alternating recurrence*) b=Flatten[Table[Abs[A[n]], {n, 0, digits}]] ListPlot[b, PlotJoined->True]
CROSSREFS
Sequence in context: A033782 A302721 A321740 * A321921 A236419 A114448
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Sep 13 2004
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 June 5 22:26 EDT 2024. Contains 373110 sequences. (Running on oeis4.)