A052060 Numbers n such that the digits of 2^n occur with the same frequency.
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 20, 29
Offset: 1
Examples
E.g., 2^29 = 536870912 where each digit occurs once in this case.
Programs
-
Maple
filter:= proc(n) local x,i,P; P:= add(x^i,i=convert(2^n,base,10)); nops({coeffs(P,x)})=1 end proc: select(filter, [$1..10^4]); # Robert Israel, Aug 14 2015
Extensions
Name and offset corrected by Michel Marcus, Aug 12 2015
Comments