A242590 Numbers whose representation in Roman numerals is horizontally symmetrical.
1, 2, 3, 9, 10, 11, 12, 13, 19, 20, 21, 22, 23, 29, 30, 31, 32, 33, 39, 90, 91, 92, 93, 99, 100, 101, 102, 103, 109, 110, 111, 112, 113, 119, 120, 121, 122, 123, 129, 130, 131, 132, 133, 139, 190, 191, 192, 193, 199, 200, 201, 202, 203, 209, 210, 211, 212, 213, 219, 220, 221, 222, 223, 229, 230, 231, 232, 233, 239, 290
Offset: 1
Examples
Define two functions: R(n) converts the number n to Roman number notation. H[x] takes the argument x and produces a truth value, determining if the argument is horizontally symmetrical. Hence, for n = 1, R(n) = I, H[R(n)] = TRUE, so n = 1 is a term, for n = 5, R(n) = V, H[R(n)] = FALSE, so n = 5 is not a term; for n = 11, R(n) = XI, H[R(n)] = TRUE, so n = 11 is a term; for n = 50, R(n) = L, H[R(n)] = FALSE, so n = 50 is not a term; for n = 100, R(n) = C, H[R(n)] = TRUE, so n = 100 is a term; for n = 900, R(n) = CM, H[R(n)] = FALSE, so n = 900 is not a term; for n = 1000, R(n) = M, H[R(n)] = FALSE, so n = 1000 is not a term.
Links
- Philip Mizzi, Table of n, a(n) for n = 1..224
Extensions
Name edited by Jon E. Schoenfield, Sep 12 2017
Comments