|
| |
|
|
A139516
|
|
Denominators of an Egyptian fraction for "e", using only prime numbers and allowing repetitions.
|
|
2
| |
|
|
2, 2, 2, 2, 2, 5, 59, 751, 894503, 18292510297, 5993565343364843081, 818638308229506590060391447618925613, 5089762493052274984454740075748133007549187136115352857668628331136557
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,1
|
|
|
EXAMPLE
| 1/2+1/2+1/2+1/2 = 2 (integer part of "e").
1/2+1/5+1/59+1/751 gives an approximation that is good to 10 decimal digits.
Adding the other fractions we get approximations good to 18, 35, 69, 137, 272, 541 decimal digits.
|
|
|
MAPLE
| P:=proc(n) local a, i; a:=evalf(exp(1)-2, 100); for i from 1 by 1 to 4 do print(2); od; for i from 1 by 1 to n do if 1/ithprime(i)<a then a:=a-1/ithprime(i); print(a); print(ithprime(i)); fi; od; end: P(100000);
|
|
|
CROSSREFS
| Cf. A139514, A139515, A139517-A139523.
Sequence in context: A172414 A023569 A051887 * A160762 A112968 A104588
Adjacent sequences: A139513 A139514 A139515 * A139517 A139518 A139519
|
|
|
KEYWORD
| easy,nonn
|
|
|
AUTHOR
| Paolo P. Lava & Giorgio Balzarotti (paoloplava(AT)gmail.com), Apr 24 2008
|
| |
|
|