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 A240943 #23 Feb 16 2025 08:33:21 %S A240943 4,0,2,6,9,7,5,0,3,6,7,1,4,4,1,2,9,0,9,6,9,0,4,5,3,4,8,6,5,1,0,8,3,8, %T A240943 0,3,4,1,7,5,5,6,7,2,1,6,2,4,9,7,2,6,5,9,2,9,1,0,5,3,4,6,4,6,0,7,6,4, %U A240943 2,7,2,8,9,6,6,5,2,4,2,5,8,4,1,6,4,1,6,0,9,6,0,2,6,2,1,7,2,0,5,9,5,2 %N A240943 Decimal expansion of the radius of convergence of Wedderburn-Etherington numbers g.f. %D A240943 Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 5.6 Otter's Tree Enumeration Constants, p. 297. %H A240943 Nils Berglund, Yvain Bruned, <a href="https://arxiv.org/abs/1907.13028">BPHZ renormalisation and vanishing subcriticality limit of the fractional Phi_d^3 model</a>, arXiv:1907.13028 [math.PR], 2019. %H A240943 Nils Berglund, Christian Kuehn, <a href="https://hal.archives-ouvertes.fr/hal-01432157">Model Spaces of Regularity Structures for Space-Fractional SPDEs</a>, Journal of Statistical Physics, Springer Verlag, 2017, 168 (2), pp.331-368; HAL Id : hal-01432157. %H A240943 Nicolas Broutin and Philippe Flajolet, <a href="http://arxiv.org/abs/0807.2365">The height of random binary unlabelled trees</a>, arXiv:0807.2365 [math.CO], 2008. %H A240943 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/WeaklyBinaryTree.html">Weakly binary tree</a> %F A240943 1/A086317. %e A240943 0.4026975036714412909690453486510838034175567216249726592910534646... %t A240943 digits = 102; n0 = 50; dn = 50; Clear[rho]; rho[n_] := rho[n] = (Clear[c]; c[0] = 0; y[z_] = Sum[c[k]*z^k, {k, 0, n}]; eq[0] = Rest[ Thread[CoefficientList[(-2*z + 2*y[z] - y[z]^2 - y[z^2])/2, z] == 0]]; s[1] = First[Solve[First[eq[0]], c[1]]]; Do[eq[k-1] = Rest[eq[k-2]] /. s[k-1]; s[k] = First[Solve[First[eq[k-1]], c[k]]], {k, 2, n}]; z /. FindRoot[ 2*z + y[z^2] == 1 /. Flatten[Table[s[k], {k, 1, n}]], {z, 1/2}, WorkingPrecision -> digits+10]); rho[n0]; rho[n = n0 + dn]; While[RealDigits[rho[n], 10, digits] != RealDigits[rho[n - dn], 10, digits], Print["n = ", n]; n = n + dn]; RealDigits[rho[n], 10, digits] // First %t A240943 (* or, after A086317: *) Clear[c, xi]; c[0] = 2; c[n_] := c[n] = c[n-1]^2 + 2; xi[n_Integer] := xi[n] = c[n]^(2^-n); xi[5]; xi[n = 10]; While[RealDigits[xi[n], 10, digits] != RealDigits[xi[n-5], 10, digits], n = n+5]; RealDigits[1/xi[n], 10, digits] // First (* _Jean-François Alcover_, Aug 04 2014 *) %Y A240943 Cf. A001190, A086317. %K A240943 nonn,cons %O A240943 0,1 %A A240943 _Jean-François Alcover_, Aug 04 2014