A342851 Remove duplicates in the decimal digit-reversal of n.
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 81, 82
Offset: 1
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..10000
- Dana G. Korssjoen, Biyao Li, Stefan Steinerberger, Raghavendra Tripathi, and Ruimin Zhang, Finding Structure in Sequences of Real Numbers via Graph Theory: a Problem List, arXiv:2012.04625 [math.CO], 2020.
Programs
-
Mathematica
Union@ IntegerReverse[Range[0, 100]]
-
Python
A342851_list = [d for d in range(10**3) if d == 0 or d % 10] # Chai Wah Wu, Mar 25 2021
Comments