A139693 a(n) is the smallest positive integer m where, for k divides m, minimum(|k - m/k|) = n.
1, 2, 3, 10, 5, 14, 7, 44, 33, 22, 11, 26, 13, 68, 51, 34, 17, 38, 19, 92, 69, 46, 23, 174, 145, 116, 87, 58, 29, 62, 31, 222, 185, 148, 111, 74, 37, 164, 123, 82, 41, 86, 43, 188, 141, 94, 47, 318, 265, 212, 159, 106, 53, 354, 295, 236, 177, 118, 59, 122, 61, 402, 335
Offset: 0
Keywords
Links
- Robert G. Wilson v, Table of n, a(n) for n = 0..10000
Programs
-
PARI
f(n) = {n=divisors(n); n[(2+#n)\2]-n[(1+#n)\2]} \\ A056737 a(n) = my(k=1); while(f(k) != n, k++); k; \\ Michel Marcus, Mar 20 2019
Extensions
More terms from Max Alekseyev, Oct 28 2008
Comments