The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
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 (list; graph; refs; listen; history; text; internal format)
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
AUTHOR
EXTENSIONS
Missing 8103 inserted and offset corrected by Sean A. Irvine, May 20 2019
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 May 26 10:56 EDT 2024. Contains 372824 sequences. (Running on oeis4.)