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 A069139 #19 Feb 16 2025 08:32:45 %S A069139 2,5,141,68575,32089377154,1644444237306316731482, %T A069139 65593236350142721999718859354569312622907814 %N A069139 Egyptian fraction for square root of 1/2. %H A069139 Jinyuan Wang, <a href="/A069139/b069139.txt">Table of n, a(n) for n = 0..10</a> %H A069139 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/EgyptianFraction.html">Egyptian Fraction</a>. %H A069139 <a href="/index/Ed#Egypt">Index entries for sequences related to Egyptian fractions</a> %F A069139 a(n) = ceiling(1/(1/sqrt(2) - Sum_{i=0..n-1} 1/a(i))). %e A069139 a(3) = 68575 since sqrt(1/2) = 0.707106781186..., 1/2 + 1/5 + 1/141 + 1/68574 = 0.707106781368... (which is too much) and 1/2 + 1/5 + 1/141 + 1/68575 = 0.707106781155... (which is not too much). %t A069139 a = {}; k = N[1/Sqrt[2], 1000]; Do[s = Ceiling[1/k]; AppendTo[a, s]; k = k - 1/s, {n, 1, 10}]; a (* _Artur Jasinski_, Sep 22 2008 *) %Y A069139 Cf. A006487, A010503 (sqrt(1/2)). %K A069139 nonn %O A069139 0,1 %A A069139 _Henry Bottomley_, Apr 08 2002