A023090 Numbers k such that k and 6*k are anagrams.
0, 1386, 13860, 13986, 14085, 14859, 15192, 106848, 120267, 126702, 126873, 137286, 138402, 138600, 138627, 139860, 139986, 140085, 140184, 140850, 140985, 141858, 142857, 148509, 148590, 148599, 149085, 149859, 150192, 151893, 151920, 151992
Offset: 1
Links
- David W. Wilson, Table of n, a(n) for n = 1..10001
Programs
-
Mathematica
Select[Range[0,160000],Sort[IntegerDigits[#]]==Sort[IntegerDigits[ 6#]]&] (* Harvey P. Dale, Mar 18 2015 *)
Comments