A101704 Numbers n such that reversal(n)=2n/3.
0, 6534, 65934, 659934, 6599934, 65346534, 65999934, 653406534, 659999934, 6534006534, 6593465934, 6599999934, 65340006534, 65934065934, 65999999934, 653400006534, 653465346534, 659340065934, 659934659934, 659999999934, 6534000006534, 6534659346534, 6593400065934, 6599340659934, 6599999999934
Offset: 1
Examples
g(65934,3,4)=6593400065934000659340006593400065934 is in the sequence because reversal(6593400065934000659340006593400065934) = 4395600043956000439560004395600043956 =2/3*6593400065934000659340006593400065934.
Links
- Ray Chandler, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Do[If[FromDigits[Reverse[IntegerDigits[n]]] == 2/3*n, Print[n]], {n, 150000000}]
Extensions
a(8)-a(25) from Max Alekseyev, Aug 18 2013
Comments