login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A088644
Smallest n-digit number divisible by n!.
2
1, 10, 102, 1008, 10080, 100080, 1002960, 10039680, 100154880, 1001548800, 10019116800, 100111334400, 1002550348800, 10025503488000, 100690926336000, 1004293914624000, 10314935414784000, 102437979291648000
OFFSET
1,2
COMMENTS
25! = 15511210043330985984000000 has 26 digits, so there is no 25-digit number divisible by 25!. - Jinyuan Wang, Mar 09 2020
LINKS
MATHEMATICA
Table[ n!Ceiling[10^(n - 1)/n! ], {n, 1, 19}] (* Robert G. Wilson v, Oct 30 2003 *)
PROG
(PARI) a(n) = n!*ceil(10^(n-1)/n!); \\ Jinyuan Wang, Mar 09 2020
CROSSREFS
Cf. A088645.
Sequence in context: A305712 A053041 A220491 * A080502 A078283 A045874
KEYWORD
nonn,base,fini,full
AUTHOR
Amarnath Murthy, Oct 28 2003
EXTENSIONS
More terms from Robert G. Wilson v, Oct 30 2003
STATUS
approved