A290592 Numbers x such that x = Sum_{j=1..k} d(j*x), for some k, where d(x) is the number of divisors of x.
1, 2, 9, 10, 26, 34, 46, 76, 121, 128, 136, 140, 174, 194, 226, 230, 232, 240, 268, 278, 296, 325, 362, 370, 432, 434, 438, 575, 598, 610, 620, 637, 694, 708, 718, 734, 735, 756, 796, 808, 842, 854, 860, 866, 898, 922, 925, 986, 1048, 1050, 1072, 1168, 1196, 1228
Offset: 1
Examples
For 34 we have that d(34) + d(2*34) + d(3*34) + d(4*34) + d(5*34) = 4 + 6 + 8 + 8 + 8 = 34.
Links
- Robert Israel, Table of n, a(n) for n = 1..1000
Programs
-
Maple
with(numtheory): P:=proc(n) local a,k; a:=0; k:=0; while a
Comments