OFFSET
1,1
COMMENTS
The squares of the primes are in the sequence.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
15 is a term since its biggest divisor <= sqrt(15) is 3 (this is a not sqrt(15)-smooth example).
18 is a term since its biggest divisor <= sqrt(18) is 3 (this is a sqrt(18)-smooth example).
24 is not a term since its biggest divisor <= sqrt(24) is 4 (this is a sqrt(24)-smooth counterexample).
42 is not a term since its biggest divisor <= sqrt(42) is 6 (this is a not sqrt(42)-smooth counterexample).
MATHEMATICA
f[m_]:=Module[{A=Divisors[m], a}, a=Length[A]; A[[Floor[(a+1)/2]]]];
Select[Range[176], PrimeQ[f[#]]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Emmanuel Vantieghem, Feb 20 2017
STATUS
approved