The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A174320 A determinant sequence of a matrix recursion: x(n)=x(n-1).(2*I-A.x(n-1)) 0
1, 5, 85, 8245, 65440565, 4283494440865205, 18348324030778500099729491426485, 336660994738443647199194470007929817797632634753799749499557045, 113340625378278381103431272633178867729689711019442136566960907286489475340193 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
REFERENCES
Alston S. Householder, The Theory of Matrices in Numerical Analysis, Dover, New York, 1964, page 95
LINKS
FORMULA
I=x(0);A={{0, 1, 0}, {0, 0, 1}, {1, 1, 0}};
x(n)=x(n-1).(2*I-A.x(n-1))
Limit_{n->infinity} a(n)^(1/2^n) = (388 + 12*sqrt(69))^(1/3)/6 + 26/(3*(388 + 12*sqrt(69))^(1/3)) + 2/3 = 3.079595623491438786010417750836626032629... - Vaclav Kotesovec, Oct 28 2021
MATHEMATICA
Clear[x, A, n]
x[0] := {{1, 0, 0}, {0, 1, 0}, {0, 0, 1}};
A := {{0, 1, 0}, {0, 0, 1}, {1, 1, 0}};
x[n_] := x[n] = x[n - 1].(2*x[0] - A.x[n - 1]);
Table[Det[x[n]], {n, 0, 10}]
CROSSREFS
Sequence in context: A018925 A309327 A363424 * A140159 A073862 A222983
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Mar 15 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 3 08:54 EDT 2024. Contains 373057 sequences. (Running on oeis4.)