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”).

A103193
This sequence needs a meaningful name.
1
0, 1, 1, 1, 1, 1, 5, 1, -5, -7, 1, -1, 33, 1, -1, -255, 1, 255, 1, 1, -2049, 16385, 1, -32769, 262145, 1, -524289, 1, 1, -8388609, -268435455, 1, 268435455, 8589934593, 1, -1, -549755813887, 1, -1, 70368744177665, 1, -70368744177665, 1, 1, 9007199254740991, -1152921504606846975
OFFSET
0,7
MATHEMATICA
a = 1;
M1 = {{2, 0, 1}, {a - 1, a, 0}, {a - 3, 1, a - 1}};
v[0] = {0, 1, 1}; v[1] = {1, 1, 1};
v[n_] := v[n] = MatrixPower[M1, n].v[n - 1];
b = Flatten[Table[v[n], {n, 0, 15}]]
CROSSREFS
Cf. A103191.
Sequence in context: A054244 A093562 A081774 * A011093 A062176 A338167
KEYWORD
sign,uned
AUTHOR
Roger L. Bagula, Mar 18 2005
STATUS
approved