cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A297013 Decimal expansion of limiting power-ratio for A297011; see Comments.

This page as a plain text file.
%I A297013 #4 Jan 13 2018 09:29:17
%S A297013 9,1,9,4,0,1,9,8,6,4,2,9,2,6,9,6,7,5,8,3,1,3,2,7,0,0,0,4,6,1,7,4,2,5,
%T A297013 9,6,8,8,7,7,7,0,5,4,9,1,9,4,8,8,1,0,8,7,9,8,9,8,9,6,9,5,9,7,5,2,6,5,
%U A297013 0,6,9,1,2,7,1,5,3,0,5,0,6,9,7,2,5,1
%N A297013 Decimal expansion of limiting power-ratio for A297011; see Comments.
%C A297013 Suppose that A = (a(n)), for n >= 0, is a sequence, and g is a real number such that a(n)/a(n-1) -> g. The limiting power-ratio for A is the limit as n->oo of a(n)/g^n, assuming that this limit exists. For A = A297011, we have g = 1+ sqrt(2). See the guide at A296469 for related sequences.
%e A297013 limiting power-ratio = 0.919401986429269675831327000461742596887...
%t A297013 a[0] = 3; a[1] = 5; b[0] = 1; b[1] = 2; b[2] = 4;
%t A297013 a[n_] := a[n] = 2 a[n - 1] + a[n - 2] - b[n];
%t A297013 j = 1; While[j < 9, k = a[j] - j - 1;
%t A297013  While[k < a[j + 1] - j + 1, b[k] = j + k + 2; k++]; j++];
%t A297013 u = Table[a[n], {n, 0, k}]; (* A297011 *)
%t A297013 z = 1700; r = 1 + Sqrt[2]; h = Table[N[a[n]/r^n, z], {n, 0, z}];
%t A297013 StringJoin[StringTake[ToString[h[[z]]], 41], "..."]
%t A297013 Take[RealDigits[Last[h], 10][[1]], 120] (* A297013 *)
%Y A297013 Cf. A297011.
%K A297013 nonn,easy,cons
%O A297013 0,1
%A A297013 _Clark Kimberling_, Jan 13 2018