|
Search: id:A007954
|
|
|
| A007954 |
|
Product of digits of n. |
|
+0 45
|
|
| 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 0, 3, 6, 9, 12, 15, 18, 21, 24, 27, 0, 4, 8, 12, 16, 20, 24, 28, 32, 36, 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 0, 6, 12, 18, 24, 30, 36, 42, 48, 54, 0, 7, 14, 21, 28, 35, 42, 49, 56, 63, 0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 0, 9, 18, 27, 36, 45, 54, 63, 72, 81, 0, 0, 0, 0, 0, 0, 0, 0
(list; graph; listen)
|
|
|
OFFSET
|
0,3
|
|
|
COMMENT
|
A000035(a(A014261(n))) = 1. - Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Nov 30 2007
|
|
REFERENCES
|
F. Smarandache, "Only Problems, not Solutions!", Xiquan Publ., Phoenix-Chicago, 1993
|
|
LINKS
|
N. J. A. Sloane, Table of n, a(n) for n = 0..10000
M. L. Perez et al., eds., Smarandache Notions Journal
F. Smarandache, Only Problems, Not Solutions!.
|
|
MAPLE
|
A007954 := proc(n) local t1, t2; t1 := n; t2 := 1; while t1 <> 0 do t2 := t2 * (t1 mod 10); t1 := floor(t1/10); od: t2; end;
|
|
MATHEMATICA
|
Array[ Times @@ IntegerDigits[ #-1 ]&, 100 ]
|
|
PROGRAM
|
(PARI) A007954(n)= { local(resul); if(n<10, return(n) ); resul = n % 10; n = (n - n%10)/10; while( n > 0, resul *= n %10; n = (n - n%10)/10; ); return(resul); } { for(n=0, 50, print1(A007954(n), ", "); ); } - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), May 23 2006
|
|
CROSSREFS
|
Cf. A031347 (different from A035930), A007953, A010888.
Sequence in context: A031347 A087471 A128212 this_sequence A079475 A081286 A080867
Adjacent sequences: A007951 A007952 A007953 this_sequence A007955 A007956 A007957
|
|
KEYWORD
|
nonn,base,easy,nice
|
|
AUTHOR
|
R. Muller
|
|
EXTENSIONS
|
Error in term 25 corrected 11/95.
|
|
|
Search completed in 0.003 seconds
|