OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..3908
EXAMPLE
a(1)=11 because exp(11)=59874.1... and no other 1<= k < 11 gives (exp(k)) whose fractional part starts with 1;
a(2)=14 because exp(14)=1202604.2...;
a(7)=1 because exp(1)=2.7...;
MAPLE
V:= Array(0..999):
count:= 0:
for n from 1 while count < 999 do
d:= floor(log10(exp(n)));
Digits:= d+10;
for m from 1 to 3 do
x:= floor(10^m*exp(n)) mod 10^m;
if x >= 10^(m-1) and V[x] = 0 then
count:= count+1;
V[x]:= n
fi
od;
od:
seq(V[i], i=1..999); # Robert Israel, Dec 14 2015
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Mark Hudson (mrmarkhudson(AT)hotmail.com), Nov 17 2004
STATUS
approved