login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A022765
Ordered sequence of distinct terms of the form floor(exp(i) * floor(exp(j))), i,j >= 0.
1
1, 2, 5, 7, 14, 19, 20, 40, 51, 54, 109, 140, 146, 147, 148, 296, 382, 399, 401, 402, 403, 806, 1038, 1084, 1091, 1093, 1095, 1096, 2193, 2824, 2948, 2968, 2972, 2977, 2979, 2980, 5961, 7676, 8014, 8068, 8080, 8094, 8098, 8100, 8103, 16206, 20866
OFFSET
1,2
LINKS
MAPLE
M:= 10^5: # for all terms <= M
g:= proc(x) local i, R, v; R:= NULL;
for i from 0 do
v:= floor(exp(i)*x);
if v > M then return R fi;
R:= R, v;
od;
end proc:
sort(convert(map(g, {g(1)}), list)); # Robert Israel, Aug 22 2019
CROSSREFS
Cf. A001113 (e).
Sequence in context: A217753 A022771 A132603 * A228208 A338231 A286573
KEYWORD
nonn
EXTENSIONS
Missing 8103 inserted and offset corrected by Sean A. Irvine, May 20 2019
STATUS
approved