OFFSET
0,3
LINKS
FORMULA
If n=abcd (say) in decimal, then a(n) = abcd * a * b * c * d.
a(n) = n*A007954(n). - R. J. Mathar, Sep 27 2013
EXAMPLE
a(15) = 15*1*5=75
MAPLE
with transforms; [seq(n*digprod(n), n=0..200)]; # N. J. A. Sloane, Oct 12 2013
MATHEMATICA
Array[# Times@@ IntegerDigits@#&, 60, 0] (* Vincenzo Librandi, Oct 13 2013 *)
PROG
(PARI) a(n) = vecprod(digits(n))*n; \\ Michel Marcus, Aug 06 2020
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Alexandre Wajnberg, Sep 30 2004
EXTENSIONS
More terms from Sam Alexander, Jan 06 2005
Corrected by Vincenzo Librandi, Oct 13 2013
STATUS
approved