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.
%I A298531 #6 Jan 10 2024 16:15:59 %S A298531 1,0,0,9,4,1,5,1,2,5,5,9,4,6,4,8,4,6,8,5,0,9,6,1,8,9,7,2,1,8,6,8,6,2, %T A298531 3,4,3,9,2,3,8,6,4,4,0,2,8,6,2,9,0,8,8,9,2,2,7,5,1,6,3,5,7,5,5,3,6,9, %U A298531 9,4,1,9,4,6,7,3,9,1,0,8,2,6,0,9,7,7 %N A298531 Decimal expansion of lim_ {n->oo} (s(0) + s(1) + ... + s(n) - (n+1)*g), where g = 2.3416277185114784317..., s(n) = (s(n - 1) + Pi)^(1/2), s(0) = Pi. %C A298531 (lim_ {n->oo} s(n)) = g = positive zero of x^2 - x - Pi. See A298512 for a guide to related sequences. %e A298531 lim_ {n->oo} (s(0) + s(1) + ... + s(n) - (n+1)*g) -> 1.009415125594648468509... %t A298531 s[0] = Pi; d = Pi; p = 1/2; %t A298531 g = (x /. NSolve[x^(1/p) - x - d == 0, x, 200])[[2]] %t A298531 s[n_] := s[n] = (s[n - 1] + d)^p %t A298531 N[Table[s[n], {n, 0, 30}]] %t A298531 s = N[Sum[-g + s[n], {n, 0, 200}], 150 ]; %t A298531 RealDigits[s, 10][[1]] (* A298531 *) %Y A298531 Cf. A298512, A298530. %K A298531 nonn,easy,cons %O A298531 1,4 %A A298531 _Clark Kimberling_, Feb 12 2018