[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
login
Integers in base 11 with each base-11 digit represented by 2 decimal digits.
3

%I #15 Oct 07 2022 17:18:05

%S 0,1,2,3,4,5,6,7,8,9,10,100,101,102,103,104,105,106,107,108,109,110,

%T 200,201,202,203,204,205,206,207,208,209,210,300,301,302,303,304,305,

%U 306,307,308,309,310,400,401,402,403,404,405,406,407,408,409,410,500

%N Integers in base 11 with each base-11 digit represented by 2 decimal digits.

%H Matthew House, <a href="/A055649/b055649.txt">Table of n, a(n) for n = 0..10000</a>

%p a:= proc(n) local i, m, r ; m:=n; r:=0;

%p for i from 0 while m>0 do

%p r:= r +100^i*irem(m, 11, 'm')

%p od; r

%p end:

%p seq(a(n), n=0..82); # _Alois P. Heinz_, Oct 07 2022

%Y Cf. A049872.

%K nonn,base,easy

%O 0,3

%A _Henry Bottomley_, Jun 06 2000

%E Incorrect o.g.f. and linear recurrence removed by _Georg Fischer_, Oct 07 2022