OFFSET
1,1
COMMENTS
Contains numbers like 47265, 47290, 47295, 47405 which are absent in A049357. - R. J. Mathar, Aug 24 2023
MAPLE
isA031947 := proc(n)
convert(convert(n, base, 6), set) ;
if nops(%) = 6 then
true;
else
false;
end if;
end proc:
for n from 1 to 12000 do
if isA031947(n) then
print(n);
end if;
end do: # R. J. Mathar, Aug 24 2023
CROSSREFS
KEYWORD
nonn,base
AUTHOR
STATUS
approved