|
Search: id:A110452
|
|
|
| A110452 |
|
Product of all k digit numbers starting from n where k is the number of digits in n. a(n) = n*(n+1)...*(10^k-1), where k is the number of digits in n. |
|
+0 1
|
|
| 362880, 362880, 181440, 60480, 15120, 3024, 504, 72, 9
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
The subsequent terms are too large to include: a(10) has 151 digits, a(11) has 150 digits, a(12) has 149 digits. - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Feb 08 2008
|
|
MAPLE
|
A110452 := proc(n) local k ; k := nops(convert(n, base, 10)) ; mul(i, i=n..10^k-1) ; end: for n from 1 to 13 do printf("%d, ", A110452(n)) ; od: - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Feb 08 2008
|
|
CROSSREFS
|
Sequence in context: A034630 A109160 A110453 this_sequence A011520 A045511 A029577
Adjacent sequences: A110449 A110450 A110451 this_sequence A110453 A110454 A110455
|
|
KEYWORD
|
base,nonn
|
|
AUTHOR
|
Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Aug 04 2005
|
|
|
Search completed in 0.002 seconds
|