OFFSET
1,1
COMMENTS
LINKS
Eric Weisstein's World of Mathematics, Egyptian fraction
Eric Weisstein's World of Mathematics, Trott constants (similar but with continued fractions)
EXAMPLE
We start from 10 because 1/10 = 0.1000...
Then the next integer is 316 because 1/10 + 1/316 = 0.10316455... and so on.
The sum is 0.10 316 617610 803725588973 456253083482572713037551 ...
MAPLE
P:=proc(q) local a, b, d, n; a:=1/10; b:=2; d:=10; print(d);
for n from 1 to q do if trunc(evalf(a+1/n, 100)*10^(b+ilog10(n)+1))=d*10^(ilog10(n)+1)+n then b:=b+ilog10(n)+1; d:=d*10^(ilog10(n)+1)+n; a:=a+1/n; print(n); fi;
od; end: P(10^20);
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Apr 16 2018
EXTENSIONS
a(4)-a(7) from Giovanni Resta, Apr 16 2018
STATUS
approved