OFFSET
1,2
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000
EXAMPLE
242 = 288_9 is in the sequence as it has distinct run lengths of distinct digits (1, 2). - David A. Corneth, Jan 04 2021
MAPLE
rlset := proc(L::list)
local lset, rl, i ;
lset := [] ;
rl := 1 ;
for i from 2 to nops(L) do
if op(i, L) = op(i-1, L) then
rl := rl+1 ;
else
lset := [op(lset), rl] ;
rl := 1;
end if;
end do:
lset := [op(lset), rl] ;
end proc:
isA044820 := proc(n)
local dgs, rl;
dgs := convert(n, base, 9) ;
rl := rlset(dgs) ;
if nops(rl) = nops( convert(rl, set)) then
true;
else
false;
end if;
end proc:
for n from 1 to 400 do
if isA044820(n) then
printf("%d, ", n) ;
end if;
end do: # R. J. Mathar, Jan 18 2018
CROSSREFS
KEYWORD
nonn,base
AUTHOR
STATUS
approved