OFFSET
1,2
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..10000
EXAMPLE
24 is a term as the product of the digits of 24 is 2*4 = 8 and the number of divisors = 8.
MAPLE
with(numtheory):l := 1:a[1] := 1:for n from 2 to 10000 do d := convert(n, base, 10): if(product(d[i], i=1..nops(d))=tau(n)) then l := l+1:a[l] := n:fi:od:seq(a[i], i=1..l); # Sascha Kurz
MATHEMATICA
Select[Range[10^4], Apply[Times, IntegerDigits[ # ]] == DivisorSigma[0, # ] &]
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Joseph L. Pe, Sep 22 2002
STATUS
approved