A262981 Numbers k such that the least positive integer having exactly k divisors is divisible by k.
1, 2, 6, 8, 9, 12, 18, 20, 24, 30, 36, 40, 45, 56, 60, 72, 75, 80, 84, 90, 112, 120, 125, 126, 140, 144, 150, 168, 180, 210, 224, 225, 240, 250, 252, 264, 280, 288, 300, 315, 336, 350, 352, 360, 375, 396, 420, 440, 441, 448, 450, 500, 504, 525, 528, 560, 600, 616, 624, 625
Offset: 1
Keywords
Examples
9 is in the sequence because the least positive integer having exactly 9 divisors is 36, which is divisible by 9.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Anton Nikonov)
- Vladimir Letsko, The table of correspondence between A262981 and A262983
- Vladimir Letsko, Mathematical Marathon, Problem 216 (in Russian)
Crossrefs
Programs
-
PARI
fhasndiv(n) = {k=1; while (numdiv(k) != n, k++); k;} isok(n) = if (!(fhasndiv(n) % n), 1, 0); \\ Michel Marcus, Oct 06 2015
Extensions
Missing a(34) added by Giovanni Resta, Oct 06 2015
Comments