OFFSET
1,10
COMMENTS
Experimentation shows that these are tensors that build up in a triangular manner. This particular isomer of the M tensor give the first column of the triangular form to be a Fibonacci sequence.
FORMULA
v[1]={{0, 1}, {1, 1}} v[m]=M.v[n-1] M={M1, M2} M1={{0, 1}, {1, 0}} M2={{1, 1}, {1, 0}} a(n) = Flatten[Table[v[m], {m, 1, w}]]
MATHEMATICA
v[1] = {{0, 1}, {1, 1}} M = {{{0, 1}, {1, 0}}, {{1, 1}, {1, 0}}} v[n_] := v[n] = M.v[n - 1] a = Table[v[n], {n, 1, 6}] (*shows the triangular form*) MatrixForm[a] aa = Flatten[a] (* shows a self-similar shape to the flattened sequence*) ListPlot[aa, PlotJoined -> True]
CROSSREFS
KEYWORD
nonn,uned,obsc
AUTHOR
Roger L. Bagula, Apr 12 2005
STATUS
approved