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.

A298517 Decimal expansion of lim_ {n->oo} ((n + 1)*g - s(0) - s(1) - ... - s(n)), where g = (1 + sqrt (13))/2, s(n) = (s(n - 1) + 3)^(1/2), s(0) = 1.

This page as a plain text file.
%I A298517 #6 Jan 10 2024 16:08:38
%S A298517 1,6,9,0,8,2,1,7,6,7,5,9,0,2,1,6,0,2,7,2,1,0,5,3,8,6,5,0,5,4,7,9,1,3,
%T A298517 8,8,5,9,9,4,2,5,2,6,7,7,7,2,8,7,6,9,5,3,6,9,7,6,6,3,8,6,1,9,4,7,9,2,
%U A298517 4,1,7,3,1,4,3,9,5,2,3,3,5,3,3,4,9,0
%N A298517 Decimal expansion of lim_ {n->oo} ((n + 1)*g - s(0) - s(1) - ... - s(n)), where g = (1 + sqrt (13))/2, s(n) = (s(n - 1) + 3)^(1/2), s(0) = 1.
%C A298517 (lim_ {n->oo} s(n)) = g = (1 + sqrt (13))/2.  See A298512 for a guide to related sequences.
%e A298517 ((n + 1)*g - s(0) - s(1) - ... - s(n)) -> 0.91504984801513491484363121460300...
%t A298517 s[0] = 1; d = 3; p = 1/2; s[n_] := s[n] = (s[n - 1] + d)^p
%t A298517 N[Table[s[n], {n, 0, 30}]]
%t A298517 z = 200 ; g = (1 + Sqrt[13])/2;
%t A298517 s = N[(z + 1)*g - Sum[s[n], {n, 0, z}], 150 ];
%t A298517 RealDigits[s, 10][[1]];  (* A298517 *)
%Y A298517 Cf. A298512, A298515, A298516.
%K A298517 nonn,easy,cons
%O A298517 0,2
%A A298517 _Clark Kimberling_, Feb 11 2018