A083903 Number of divisors of n with largest digit <= 8 (base 10).
1, 2, 2, 3, 2, 4, 2, 4, 2, 4, 2, 6, 2, 4, 4, 5, 2, 5, 1, 6, 4, 4, 2, 8, 3, 4, 3, 6, 1, 8, 2, 6, 4, 4, 4, 8, 2, 3, 3, 8, 2, 8, 2, 6, 5, 4, 2, 10, 2, 6, 4, 6, 2, 7, 4, 8, 3, 3, 1, 12, 2, 4, 5, 7, 4, 8, 2, 6, 3, 8, 2, 11, 2, 4, 6, 5, 4, 7, 1, 10, 4, 4, 2, 12, 4, 4, 3, 8, 1, 10, 3, 5, 3, 3, 2, 11, 1, 4, 4, 9, 2, 8
Offset: 1
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Table[Length[DeleteCases[Divisors[n],?(Max[IntegerDigits[#]]==9&)]],{n,110}] (* _Harvey P. Dale, Nov 21 2015 *)