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

A120494
A vector group determinant sequence in which the next element is made by a sum of the older elements over a vector like 2 X 2 matrix group.
0
1, 1, 2, 3, 5, 13, 139, 19136, 366167031, 134078294225149313, 17976988982325707481237962186849833, 323172132870659875927245721269598505772051876540063951439000722587455
OFFSET
0,3
COMMENTS
This sequence type gets very large very fast.
FORMULA
s[1] = {{1, 0}, {0, 1}}; s[2] = {{1, 0}, {0, -1}}; s[3] = {{0, 1}, {1, 0}}; s[4] = {{0, 1}, {-1, 0}}; a[0] = {0, 1, 1, 2}; a[1] = {1, 1, 2, 3}; a[n_] := a[n] = {a[n - 1][[2]], a[n - 1][[3]], a[n - 1][[4]], Det[Sum[a[n - 1][[i]]*s[i], {i, 1, 4}]]} a(n)=a[n][[1]]
MATHEMATICA
s[1] = {{1, 0}, {0, 1}}; s[2] = {{1, 0}, {0, -1}}; s[3] = {{0, 1}, {1, 0}}; s[4] = {{0, 1}, {-1, 0}}; a[0] = {0, 1, 1, 2}; a[1] = {1, 1, 2, 3}; a[n_] := a[n] = {a[n - 1][[2]], a[n - 1][[3]], a[n - 1][[4]], Det[Sum[a[n - 1][[i]]*s[i], {i, 1, 4}]]} Table[a[n][[1]], {n, 1, 15}]
CROSSREFS
Sequence in context: A005478 A117740 A041047 * A038601 A372228 A114747
KEYWORD
nonn,uned
AUTHOR
Roger L. Bagula, Aug 06 2006
STATUS
approved