login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A049872 Integers in base 12, written using 2 decimal digits (00, 01, 02, ...,09, 10, 11) to represent base-12 "digits". 8

%I #11 Jun 23 2014 09:46:59

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

%T 110,111,200,201,202,203,204,205,206,207,208,209,210,211,300,301,302,

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

%N Integers in base 12, written using 2 decimal digits (00, 01, 02, ...,09, 10, 11) to represent base-12 "digits".

%H Alois P. Heinz, <a href="/A049872/b049872.txt">Table of n, a(n) for n = 0..1000</a>

%e 12 in base 12 is "1""0", which is written here as 100.

%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, 12, 'm')

%p od; r

%p end:

%p seq(a(n), n=0..60); # _Alois P. Heinz_, Jun 23 2014

%K base,easy,nonn

%O 0,3

%A Robert Lozyniak (11(AT)onna.com)

%E a(57)-a(60) from _WG Zeist_, Sep 08 2012

%E Definition clarified by _N. J. A. Sloane_, Sep 08 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)