A020335 Numbers whose base-7 representation is the juxtaposition of two identical strings.
8, 16, 24, 32, 40, 48, 350, 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, 900, 950, 1000, 1050, 1100, 1150, 1200, 1250, 1300, 1350, 1400, 1450, 1500, 1550, 1600, 1650, 1700, 1750, 1800, 1850, 1900, 1950, 2000, 2050, 2100, 2150, 2200, 2250, 2300, 2350
Offset: 1
Examples
450_10 = 1212_7. - _Jon E. Schoenfield_, Feb 12 2021
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
a[n_] := n + n*7^Floor[Log[7, n] + 1]; Array[a, 50] (* Amiram Eldar, Apr 06 2021 *)
Formula
a(n) = n*7^floor(log_7(n)+1) + n. - Ilya Gutkovskiy, Jan 26 2018