OFFSET
0,4
COMMENTS
The sequence is generated by taking increasing powers of the matrix M = {{0, 1, 0, 0, 0, 0}, {0, 0, 1, 0, 0, 0}, {0, 0, 0, 1, 0, 0}, {0, 0, 0, 0, 1, 0}, {0, 0, 0, 0, 0, 1}, {-1, 4, 6, -24, 4, 6}}, multiplying the vector {0, 1, 1, 2, 3, 5} from the right and storing the product's upper element.
LINKS
Index entries for linear recurrences with constant coefficients, signature (6,4,-24,6,4,-1).
MATHEMATICA
m=4; M = {{0, 1, 0, 0, 0, 0}, {0, 0, 1, 0, 0, 0}, {0, 0, 0, 1, 0, 0}, {0, 0, 0, 0, 1, 0}, {0, 0, 0, 0, 0, 1}, {-1, m, (m + 2), -m*(m + 2), m, (m + 2)}}; v[0] = {0, 1, 1, 2, 3, 5}; v[n_] := M.v[n - 1]; a = Table[v[n][[1]], {n, 0, 30}]
CROSSREFS
KEYWORD
sign
AUTHOR
Roger L. Bagula, May 27 2005
EXTENSIONS
Signed version reintroduced by R. J. Mathar, Sep 11 2011
More terms from Jason Yuen, Oct 05 2025
STATUS
approved
