login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A105240
Tensor Markov 2 X 2 X 2 times matrix 2 X 2 in a generalized Fibonacci type form: symmetrical form.
0
0, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 2, 2, 2, 4, 1, 1, 1, 2, 2, 2, 2, 4, 1, 1, 1, 2, 2, 2, 2, 4, 2, 2, 2, 4, 4, 4, 4, 8, 1, 1, 1, 2, 2, 2, 2, 4, 2, 2, 2, 4, 4, 4, 4, 8, 1, 1, 1, 2, 2, 2, 2, 4, 2, 2, 2, 4, 4, 4, 4, 8, 2, 2, 2, 4, 4, 4, 4, 8, 4, 4, 4, 8, 8, 8, 8, 16, 1, 1, 1, 2, 2, 2, 2, 4, 2, 2, 2, 4, 4
OFFSET
1,8
COMMENTS
The symmetry of the two component matrices in the tensor gives powers of two in the result.
MATHEMATICA
v[1] = {{0, 1}, {1, 1}}
M = {{{0, 1}, {11}}, {{0, 1}, {1, 1}}}
v[n_] := v[n] = M.v[n - 1]
a = Table[v[n], {n, 1, 6}]
aa = Flatten[a]
Length[aa]
CROSSREFS
Sequence in context: A351742 A090677 A161097 * A327499 A353693 A327857
KEYWORD
nonn,uned,obsc
AUTHOR
Roger L. Bagula, Apr 12 2005
STATUS
approved