OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
55 = 5 * 11 is included, because floor(11/2) = 5.
666 = 2 * 3^2 * 37 is included, because floor(37/2) = 18 = 2 * 3^2.
MAPLE
N:= 10000: # for terms < N
R:= NULL:
p:= 1:
do
p:= nextprime(p);
a:= floor(p/2);
if a*p > N then break fi;
for e from 1 do
x:= a*p^e;
if x > N then break fi;
R:= R, x;
od
od:
sort([R]); # Robert Israel, Jan 16 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 16 2025
STATUS
approved
