OFFSET
1,1
COMMENTS
Generated with Perl's Math::BigFloat module. Number of digits in terms is as follows: 1, 2, 3, 5, 9, 17, 34, 69, 139, 278, ...
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..11
Eric Weisstein's World of Mathematics, Egyptian Fraction.
EXAMPLE
Fractional part of 3^(1/3) = 1/3 + 1/10 + 1/113 + ...
MATHEMATICA
lst={}; k=N[3^(1/3), 1000]; Do[s=Ceiling[1/k]; AppendTo[lst, s]; k=k-1/s, {n, 12}]; lst (* Vladimir Joseph Stephan Orlovsky, Nov 02 2009 *)
CROSSREFS
KEYWORD
frac,nonn
AUTHOR
Jonathan Wellons (wellons(AT)gmail.com), Aug 23 2007
STATUS
approved