login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A043631
Numbers whose base-9 representation has exactly 2 runs.
1
9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, 72, 73, 74, 75, 76, 77, 78, 79, 81, 90, 92, 93, 94, 95
OFFSET
1,1
LINKS
MAPLE
rlen := proc(n, ba) local rs, s, dgs, i ; rs :=0 ; s := 0; dgs := convert(n, base, ba) ; for i from 1 to nops(dgs) do if s = 0 then s :=1 ; else if op(i, dgs) <> op(i-1, dgs) then rs := rs+1 ; s :=1 ; else s :=s+1 ; fi; fi; od: rs := rs+1 ; RETURN (rs) ; end: for n from 1 to 200 do if rlen(n, 9) = 2 then printf("%d, ", n) ; fi; od: # R. J. Mathar, Oct 20 2008
MATHEMATICA
Select[Range[100], Length[Split[IntegerDigits[#, 9]]]==2&] (* Harvey P. Dale, Jan 06 2022 *)
CROSSREFS
Cf. A007095.
Sequence in context: A107576 A263772 A031954 * A043698 A043457 A202707
KEYWORD
nonn,base
EXTENSIONS
Extended by R. J. Mathar, Oct 20 2008
STATUS
approved