OFFSET
1,1
COMMENTS
The asymptotic density of this sequence is 1 (Schinzel and Šalát, 1994).
REFERENCES
József Sándor and Borislav Crstici, Handbook of Number theory II, Kluwer Academic Publishers, 2004, chapter 3, p. 331.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Andrzej Schinzel and Tibor Šalát, Remarks on maximum and minimum exponents in factoring, Mathematica Slovaca, Vol. 44, No. 5 (1994), pp. 505-514.
EXAMPLE
4 = 2^2 is a term since A051904(4) = 2 is a divisor of 4.
MATHEMATICA
h[1] = 0; h[n_] := Min[FactorInteger[n][[;; , 2]]]; Select[Range[2, 100], Divisible[#, h[#]] &]
Select[Range[2, 100], Divisible[#, Min[FactorInteger[#][[All, 2]]]]&] (* Harvey P. Dale, Aug 31 2020 *)
PROG
(PARI) isok(m) = if (m>1, (m % vecmin(factor(m)[, 2])) == 0); \\ Michel Marcus, Jul 08 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jul 07 2020
STATUS
approved