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!)
A138804 Let X denote the 2 X 2 matrix [0,1; 1,exp(1)], let Y = X^n; a(n) = floor(Y[1,1]). 0
0, 1, 2, 8, 25, 77, 236, 721, 2198, 6698, 20408, 62173, 189414, 577055, 1758012, 5355828, 16316664, 49709120, 151440064, 461365896, 1405562597, 4282081163, 13045466011, 39743334364, 121079049617, 168870314746 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
a(n)/a(n-1) tends to 3.046524695... = exp ArcSinh(e/2) = (exp(1)+(exp(2)+4)^(1/2))/2, the largest eigenvalue of X.
LINKS
EXAMPLE
a(5) = 5 floor of term (1,1) in X^5 = 25.
MAPLE
ans:=[];
A:=Matrix(2, 2, [[0, 1], [1, exp(1)]]);
B:=Matrix(2, 2, [[0, 1], [1, exp(1)]]);
for n from 1 to 20 do
ans:=[op(ans), floor(B[1, 1])];
B:=A.B;
od:
ans; # N. J. A. Sloane, Jul 01 2017
CROSSREFS
Sequence in context: A176855 A309237 A037560 * A212323 A301842 A240478
KEYWORD
nonn
AUTHOR
Gary W. Adamson, Mar 30 2008
EXTENSIONS
Definition corrected by N. J. A. Sloane, Jul 01 2017
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 April 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)