OFFSET
1,1
COMMENTS
Many terms are of the form a(k) * p^m/(m+1), where p is coprime to the three solutions for k. The sequence of "primitive" terms (i.e. not expressible this way) begins 3, 40, 54, 125, 135, 216, 250.... Are there any such numbers that admit a fourth solution? - Charlie Neder, Feb 13 2019
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
EXAMPLE
There are exactly 3 numbers k, 9, 18 and 24, with k/d(k) = 3.
MATHEMATICA
(Select[Table[k / Length @ Divisors[k], {k, 1, 200000}], IntegerQ] // Sort // Split // Select[#, Length[#] == 3 &] &)[[All, 1]][[1 ;; 53]] (* Jean-François Alcover, Apr 22 2011 *)
CROSSREFS
KEYWORD
nonn,easy,nice
AUTHOR
STATUS
approved