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 A230157 #16 Dec 05 2016 10:40:28 %S A230157 9,2,9,5,7,0,1,2,8,2,3,2,0,2,2,8,6,4,2,0,4,4,1,3,0,3,6,9,1,4,4,6,4,1, %T A230157 2,5,4,3,5,3,2,5,8,5,3,0,0,2,0,2,4,8,3,3,6,3,0,2,0,5,5,4,5,2,1,5,0,9, %U A230157 8,7,8,5,3,0,6,5,4,2,7,2,6,2,1,3,5,0,7 %N A230157 Decimal expansion of the positive real solution of the equation x^(k+1)+x^k-1=0. Case k=9. %C A230157 Also decimal expansion of (1+(1+(1+ ... )^(1/k))^(1/k))^(1/k), with k integer and k<0. Case k=-9. %H A230157 Paolo P. Lava, <a href="/A230157/b230157.txt">Table of n, a(n) for n = 0..1000</a> %e A230157 0.9295701282320228642044130369144641254353258530020248336... %p A230157 with(numtheory); P:=proc(q,h) local a,n; a:=(q+1)^(1/h); %p A230157 for n from q by -1 to 1 do a:=(1+a)^(1/h);od; %p A230157 print(evalf(a,1000)); end: P(1000,-9); %t A230157 Root[x^10 + x^9 - 1, 2] // RealDigits[#, 10, 100]& // First (* _Jean-François Alcover_, Feb 18 2014 *) %Y A230157 Cf. A075778, A230151-A230156, A230158. %K A230157 nonn,cons %O A230157 0,1 %A A230157 _Paolo P. Lava_, Oct 11 2013