Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #16 Jul 11 2022 08:35:15
%S 2,13,2341,41001128,3352885935529869,17147396444547741051849884001699,
%T 1847333322606272250132077006229901193256553492442739965269739579
%N Denominators of greedy Egyptian fraction for 1/sqrt(3) (A020760).
%H Amiram Eldar, <a href="/A144983/b144983.txt">Table of n, a(n) for n = 1..10</a>
%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/EgyptianFraction.html">Egyptian Fraction</a>.
%H <a href="/index/Ed#Egypt">Index entries for sequences related to Egyptian fractions</a>.
%t a = {}; k = N[1/Sqrt[3], 1000]; Do[s = Ceiling[1/k]; AppendTo[a, s]; k = k - 1/s, {n, 1, 10}]; a
%Y Cf. A001466, A006487, A006524, A006525, A006526, A020760, A069139, A069261, A110820, A117116, A118323, A118324, A118325, A144835, A132480-A132574, A144984-A145003.
%K nonn,frac
%O 1,1
%A _Artur Jasinski_, Sep 28 2008