A093785 Numbers that are divisible by every digit in their Roman numeral representation.
1, 2, 3, 5, 10, 20, 30, 50, 100, 200, 300, 500, 1000, 2000, 3000
Offset: 1
Examples
I, II, III, V, X, XX, XXX, L, C, CC, CCC, D, M, MM, MMM.
Links
- Stephanus Gibbs, Roman Numeral and Date Conversion
- Gerard Schildberger, The first 3999 numbers in Roman numerals
- Eric Weisstein's World of Mathematics, Roman Numerals
- Wikipedia, Roman numerals
Programs
-
Haskell
a093785 n = a093785_list !! (n-1) a093785_list = filter p [1..3999] where p v = q $ a061493 v where q w = w == 0 || v `mod` ([0,1,5,10,50,100,500,1000] !! d') == 0 && q w' where (w',d) = divMod w 10; d' = fromInteger d -- Reinhard Zumkeller, Apr 14 2013
Comments