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!)
A069139 Egyptian fraction for square root of 1/2. 26
2, 5, 141, 68575, 32089377154, 1644444237306316731482, 65593236350142721999718859354569312622907814 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
Eric Weisstein's World of Mathematics, Egyptian Fraction.
FORMULA
a(n) = ceiling(1/(1/sqrt(2) - Sum_{i=0..n-1} 1/a(i))).
EXAMPLE
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).
MATHEMATICA
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 *)
CROSSREFS
Cf. A006487, A010503 (sqrt(1/2)).
Sequence in context: A145620 A130412 A175525 * A155762 A307480 A062611
KEYWORD
nonn
AUTHOR
Henry Bottomley, Apr 08 2002
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 July 13 21:44 EDT 2024. Contains 374288 sequences. (Running on oeis4.)