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!)
A097575 A 2 X 2 matrix Fibonacci sequence. 0
1, 1, 1, 2, 1, 2, 2, 3, 2, 3, 3, 5, 3, 5, 5, 8, 5, 8, 8, 13, 8, 13, 13, 21, 13, 21, 21, 34, 21, 34, 34, 55, 34, 55, 55, 89, 55, 89, 89, 144, 89, 144, 144, 233, 144, 233, 233, 377, 233, 377, 377, 610, 377, 610, 610, 987, 610, 987, 987, 1597, 987, 1597, 1597, 2584, 1597, 2584 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Inspired by the work of Gary W. Adamson and Jay Kapraff.
LINKS
FORMULA
M={{0, 1}, {1, 1}} A[n_]:=M.A[n-1]; A[0]:={{0, 1}, {1, 1}};
a(n)=a(n-4)+a(n-8). - R. J. Mathar, Oct 31 2008
a(n)=a(n-4)+a(n-8). a(4n)=A000045(n+1). a(4n+1)=a(4n+2)=A000045(n+2). a(4n+3)=A000045(n+3). - R. J. Mathar, Nov 30 2008
MATHEMATICA
(* Fibonacci 2 X 2 Markov sequence*) digits=100 M={{0, 1}, {1, 1}} A[n_]:=M.A[n-1]; A[0]:={{0, 1}, {1, 1}}; (* flattened sequence of 2 X 2 matrices made with a Fibonacci recurrence*) b=Flatten[Table[M.A[n], {n, 0, digits}]]
CROSSREFS
Cf. A000045.
Sequence in context: A053277 A078661 A029263 * A103273 A289120 A025066
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Aug 28 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 May 14 09:33 EDT 2024. Contains 372532 sequences. (Running on oeis4.)