A211821 Numbers with all divisors with additive digital root of 1.
1, 19, 37, 73, 109, 127, 163, 181, 199, 271, 307, 361, 379, 397, 433, 487, 523, 541, 577, 613, 631, 703, 739, 757, 811, 829, 883, 919, 937, 991, 1009, 1063, 1117, 1153, 1171, 1279, 1297, 1369, 1387, 1423, 1459, 1531, 1549, 1567, 1621, 1657, 1693, 1747, 1783
Offset: 1
Examples
Number 703 with divisors 1, 19, 37, 703 is in sequence because all divisors have additive digital root of 1.
Programs
-
Mathematica
digitalRoot[n_, b_:10] := FixedPoint[Plus@@IntegerDigits[#, b] &, n]; A211821 = Select[Range[1, 1999, 9], Union[digitalRoot[Divisors[#]]] == {1} &] (* Alonso del Arte, May 02 2012 *)
Formula
a(n) = 9*k(n) + 1 for k(n) = A211823(n).
Comments