OFFSET
1,30
LINKS
Robert Israel,Table of n, a(n) for n = 1..10000
FORMULA
EXAMPLE
n=132, 3 of the 12 divisors of 132 have largest digit =3: {3,33,132}, therefore a(132)=3.
MAPLE
f:= proc(n) nops(select(t -> max(convert(t, base, 10))=d, numtheory:-divisors(n))) end proc:
d:= 3:
map(f, [$1..200]); #Robert Israel,Oct 06 2019
MATHEMATICA
With[{k = 3}, Array[DivisorSum[#, 1 &, And[#[[k]] > 0, Total@ #[[k + 1;; 9]] == 0] &@ DigitCount[#] &] &, 105]] (*Michael De Vlieger,Oct 06 2019 *)
Table[Count[Divisors[n], _?(Max[IntegerDigits[#]]==3&)], {n, 120}] (*Harvey P. Dale,Sep 05 2020 *)
PROG
(Magma) [#[d:d in Divisors(n) | Max(Intseq(d)) eq 3]: n in [1..130]]; //Marius A. Burtea,Oct 06 2019
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller,May 08 2003
STATUS
approved