cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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

This page as a plain text file.
%I A055649 #15 Oct 07 2022 17:18:05
%S A055649 0,1,2,3,4,5,6,7,8,9,10,100,101,102,103,104,105,106,107,108,109,110,
%T A055649 200,201,202,203,204,205,206,207,208,209,210,300,301,302,303,304,305,
%U A055649 306,307,308,309,310,400,401,402,403,404,405,406,407,408,409,410,500
%N A055649 Integers in base 11 with each base-11 digit represented by 2 decimal digits.
%H A055649 Matthew House, <a href="/A055649/b055649.txt">Table of n, a(n) for n = 0..10000</a>
%p A055649 a:= proc(n) local i, m, r ; m:=n; r:=0;
%p A055649       for i from 0 while m>0 do
%p A055649         r:= r +100^i*irem(m, 11, 'm')
%p A055649       od; r
%p A055649    end:
%p A055649 seq(a(n), n=0..82);  # _Alois P. Heinz_, Oct 07 2022
%Y A055649 Cf. A049872.
%K A055649 nonn,base,easy
%O A055649 0,3
%A A055649 _Henry Bottomley_, Jun 06 2000
%E A055649 Incorrect o.g.f. and linear recurrence removed by _Georg Fischer_, Oct 07 2022