OFFSET
1,2
LINKS
Nathaniel Johnston and Harvey P. Dale, Table of n, a(n) for n = 1..1000 (* first 593 terms from Nathaniel Johnston *)
FORMULA
{n such that A006968(n)|n}.
EXAMPLE
a(23) = 84 because there are 6 letters in LXXXIV and 6 divides 84.
a(44) = 189 because there are 7 letters in CLXXXIX and 7 divides 189.
a(56) = 248 because there are 8 letters in CCXLVIII and 8 divides 248.
MAPLE
for n from 1 to 500 do if(n mod length(convert(n, roman)) = 0)then printf("%d, ", n): fi: od: # Nathaniel Johnston, May 18 2011
MATHEMATICA
Select[Range[250], Divisible[#, StringLength[IntegerString[#, "Roman"]]]&] (* Harvey P. Dale, Feb 13 2013 *)
CROSSREFS
KEYWORD
base,easy,nonn,less
AUTHOR
Jonathan Vos Post, Mar 17 2006
EXTENSIONS
Corrected by Nathaniel Johnston, May 18 2011
STATUS
approved