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”).

A085236
(Greatest power of greatest prime factor of n) < square root(n).
1
12, 24, 30, 40, 45, 48, 56, 60, 63, 70, 80, 84, 90, 96, 105, 112, 120, 126, 132, 135, 140, 144, 154, 160, 165, 168, 175, 176, 180, 182, 189, 192, 195, 198, 208, 210, 220, 224, 231, 234, 240, 252, 260, 264, 270, 273, 275, 280, 286, 288, 297, 306, 308, 312
OFFSET
1,1
COMMENTS
A053585(a(n))^2 < a(n).
LINKS
MAPLE
filter:= proc(n) local F, j;
F:= ifactors(n)[2];
j:= max[index](map(t->t[1], F));
F[j][1]^(2*F[j][2]) < n
end proc:
select(filter, [$2..1000]); # Robert Israel, Nov 30 2016
CROSSREFS
Sequence in context: A364462 A369182 A108938 * A068567 A316099 A082801
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jun 22 2003
STATUS
approved