OFFSET
1,1
EXAMPLE
The divisors of 42 that are each <= sqrt(42) are 1,2,3,6. The product of these is 36. 36 does not divide 42, so 42 is in the sequence.
MAPLE
A072499 := proc(n) local a, k ; a := 1 ; for k in numtheory[divisors](n) do if k^2 <= n then a := a*k ; fi ; od: a ; end: isA139805 := proc(n) RETURN( n mod A072499(n) <> 0 ) end: for n from 1 to 300 do if isA139805(n) then printf("%d, ", n) ; fi ; od: # R. J. Mathar, May 24 2008
MATHEMATICA
a = {}; For[n = 1, n < 200, n++, If[Mod[n, Times @@ (Select[Divisors[n], ! # > Sqrt[n] &])] > 0, AppendTo[a, n]]]; a (* Stefan Steinerberger *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, May 22 2008
EXTENSIONS
More terms from R. J. Mathar and Stefan Steinerberger, May 24 2008
STATUS
approved