VOOZH about

URL: https://oeis.org/A020337

⇱ A020337 - OEIS


login
A020337
Numbers whose base-9 representation is the juxtaposition of two identical strings.
7
10, 20, 30, 40, 50, 60, 70, 80, 738, 820, 902, 984, 1066, 1148, 1230, 1312, 1394, 1476, 1558, 1640, 1722, 1804, 1886, 1968, 2050, 2132, 2214, 2296, 2378, 2460, 2542, 2624, 2706, 2788, 2870, 2952, 3034, 3116, 3198, 3280, 3362, 3444, 3526, 3608, 3690, 3772
OFFSET
1,1
LINKS
FORMULA
a(n) = n*9^floor(log_9(n)+1) + n. - Ilya Gutkovskiy, Jan 26 2018
EXAMPLE
902_10 = 1212_9. - Jon E. Schoenfield, Feb 12 2021
MATHEMATICA
a[n_] := n + n*9^Floor[Log[9, n] + 1]; Array[a, 50] (* Amiram Eldar, Apr 06 2021 *)
KEYWORD
nonn,base
AUTHOR
David W. Wilson, Melia Aldridge (ma38(AT)spruce.evansville.edu)
STATUS
approved