login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

Numbers whose base-4 and base-8 expansions have the same digit sum.
0

%I #9 Jun 21 2021 02:48:46

%S 1,2,3,24,25,26,27,64,65,66,67,88,89,90,91,128,129,130,131,152,153,

%T 154,155,192,193,194,195,216,217,218,219,528,529,530,531,552,553,554,

%U 555,592,593,594,595,616,617,618,619,656,657,658

%N Numbers whose base-4 and base-8 expansions have the same digit sum.

%t Select[Range[700],Total[IntegerDigits[#,4]]==Total[IntegerDigits[#,8]]&] (* _Harvey P. Dale_, Aug 30 2015 *)

%K nonn,base

%O 1,2

%A _Clark Kimberling_