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”).

A070698
Numbers n such that reverse(n) sets a record (that is, n such that reverse(n) > reverse(k) for all k < n).
1
1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 29, 39, 49, 59, 69, 79, 89, 99, 101, 102, 103, 104, 105, 106, 107, 108, 109, 119, 129, 139, 149, 159, 169, 179, 189, 199, 299, 399, 499, 599, 699, 799, 899, 999
OFFSET
1,2
MATHEMATICA
h = -1; l = {}; Do[a = FromDigits[Reverse[IntegerDigits[n]]]; If[a > h, h = a; l = Append[l, n]], {n, 1, 10^3}]; l
CROSSREFS
Sequence in context: A318275 A173646 A274125 * A243079 A167619 A020664
KEYWORD
base,nonn
AUTHOR
Joseph L. Pe, May 13 2002
STATUS
approved