Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #16 Jul 24 2021 06:00:12
%S 101426,114276,114627,1001426,1014026,1014260,1026014,1026615,1054614,
%T 1061454,1064127,1065432,1140276,1140627,1142760,1142776,1145476,
%U 1146270,1146277,1147546,1162675,1202547,1234567,10001426,10014026,10014260
%N Numbers k such that k and 6*k are anagrams in base 8 (written in base 8).
%t FromDigits[IntegerDigits[#,8]]&/@Select[Range[3*10^6],Sort[ IntegerDigits[ #,8]] == Sort[IntegerDigits[6#,8]]&] (* _Harvey P. Dale_, Dec 31 2015 *)
%Y Cf. A007094.
%K nonn,base
%O 1,1
%A _David W. Wilson_