A166391 Multiples of 17 whose reversal + 1 is also a multiple of 17.
187, 238, 1870, 1921, 2380, 2431, 2754, 2805, 3264, 3315, 3587, 3638, 4097, 4148, 5661, 5712, 5984, 6171, 6222, 6494, 6545, 6868, 6919, 7055, 7106, 7378, 7429, 8891, 8942, 9452, 9503, 9775, 9826
Offset: 1
Links
- G. C. Greubel, Table of n, a(n) for n = 1..10000
Crossrefs
Subsequence of A008599.
Programs
-
Mathematica
Select[17 Range[6!], Divisible[FromDigits[Reverse[IntegerDigits[#]]] + 1, 17] &] (* G. C. Greubel, May 12 2016 *)