login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A118324 (Greedy) Egyptian fraction expansion of log 2. 30
2, 6, 38, 6071, 144715221, 58600453312405245, 28261174043083404192255923187258021, 1350299665604204277005894785275782053022737307184211775676631561245153 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Egyptian Fraction.
EXAMPLE
log(2) = 1/2 + 1/6 + 1/38 + 1/6071 + 1/144715221 + ...
MATHEMATICA
lst={}; k=N[Log[2], 1000]; Do[s=Ceiling[1/k]; AppendTo[lst, s]; k=k-1/s, {n, 12}]; lst (* Vladimir Joseph Stephan Orlovsky, Nov 02 2009 *)
PROG
(PARI) x=log(2); for (k=1, 8, d=ceil(1/x); x=x-1/d; print(d)) \\ Jaume Oliver Lafont, Feb 24 2009
CROSSREFS
Cf. A002162 (log(2)).
Sequence in context: A005530 A353535 A072191 * A060421 A054970 A211348
KEYWORD
nonn,frac
AUTHOR
Eric W. Weisstein, Apr 23 2006
EXTENSIONS
a(8) from Jaume Oliver Lafont, Feb 24 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 15:11 EDT 2024. Contains 371794 sequences. (Running on oeis4.)