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”).

A055649
Integers in base 11 with each base-11 digit represented by 2 decimal digits.
3
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 500
OFFSET
0,3
LINKS
MAPLE
a:= proc(n) local i, m, r ; m:=n; r:=0;
for i from 0 while m>0 do
r:= r +100^i*irem(m, 11, 'm')
od; r
end:
seq(a(n), n=0..82); # Alois P. Heinz, Oct 07 2022
CROSSREFS
Cf. A049872.
Sequence in context: A258785 A004861 A178404 * A111705 A071274 A258373
KEYWORD
nonn,base,easy
AUTHOR
Henry Bottomley, Jun 06 2000
EXTENSIONS
Incorrect o.g.f. and linear recurrence removed by Georg Fischer, Oct 07 2022
STATUS
approved