A083900 Number of divisors of n with largest digit <= 5 (base 10).
1, 2, 2, 3, 2, 3, 1, 3, 2, 4, 2, 5, 2, 3, 4, 3, 1, 3, 1, 6, 3, 4, 2, 6, 3, 3, 2, 4, 1, 7, 2, 4, 4, 3, 3, 5, 1, 2, 3, 7, 2, 6, 2, 6, 5, 3, 1, 6, 1, 6, 3, 5, 2, 4, 4, 4, 2, 2, 1, 10, 1, 3, 3, 4, 3, 6, 1, 4, 3, 6, 1, 6, 1, 2, 5, 3, 2, 4, 1, 7, 2, 3, 1, 8, 2, 3, 2, 6, 1, 8, 2, 4, 3, 2, 2, 7, 1, 3, 4, 9, 2, 6, 2, 6, 7
Offset: 1
Programs
-
Mathematica
Table[Count[Divisors[n],?(Max[IntegerDigits[#]]<6&)],{n,110}] (* _Harvey P. Dale, Feb 02 2015 *)