cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A097886 Flattened 5 x 5 matrices: the n-th power a matrix M multiplied by some matrix A.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 1, 1, 2, 3, 1, 1, 2, 3, 5, 1, 2, 3, 5, 7, 2, 3, 5, 7, 10, 1, 1, 1, 2, 3, 1, 1, 2, 3, 5, 1, 2, 3, 5, 7, 2, 3, 5, 7, 10, 3, 5, 7, 10, 14, 1, 1, 2, 3, 5, 1, 2, 3, 5, 7, 2, 3, 5, 7, 10, 3, 5, 7, 10, 14, 5, 7, 10, 14, 20, 1, 2, 3, 5, 7, 2, 3, 5, 7, 10, 3, 5, 7, 10, 14, 5, 7, 10, 14, 20, 7, 10
Offset: 1

Views

Author

Roger L. Bagula, Sep 02 2004

Keywords

Comments

This sequence is an interlacing of 25 copies of the absolute values of A107332.

Programs

  • Mathematica
    M={{0, 1, 0, 0, 0}, {0, 0, 1, 0, 0}, {0, 0, 0, 1, 0}, {0, 0, 0, 0, 1}, {1, 0, -1, 1, 1}}
    A[n_]:=M.A[n-1];
    A[0]:={{1, 1, 1, 1, 1}, {1, 1, 1, 1, 2}, {1, 1, 1, 2, 3}, {1, 1, 2, 3, 5}, {1, 2, 3, 5, 7}};
    b=Flatten[Table[M.A[n], {n, 0, 12}]]

Extensions

Edited by the Associate Editors of the OEIS, Nov 17 2009
Showing 1-1 of 1 results.