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.

A167503 Positions of nonzero digits in this sequence, where the terms are written in base 3 (and concatenated).

This page as a plain text file.
%I A167503 #5 Jul 14 2012 11:32:32
%S A167503 1,2,10,12,20,21,100,101,102,112,121,122,201,202,210,211,212,220,221,
%T A167503 222,1000,1001,1002,1011,1012,1021,1022,1100,1102,1110,1111,1112,1120,
%U A167503 1121,1122,1200,1202,1210,1211,1212,1220,1221,1222,2010,2020,2021,2101
%N A167503 Positions of nonzero digits in this sequence, where the terms are written in base 3 (and concatenated).
%C A167503 This sequence lists the positions of nonzero digits in the sequence, where the terms are written in base 3 and concatenated, such that the least significant digit (units) of a(n) is followed by the most significant digit of a(n+1).
%e A167503 The list cannot start with 0 (cf. A167500), so the first digit of the sequence is nonzero, whence a(1)=1.
%e A167503 The next nonzero digit of this sequence will be the most significant digit (m.s.d.) of a(2), necessarily nonzero, thus a(2)=2.
%e A167503 For the same reason, a(3) = 3[10] = 10[3]. (All terms are written in base 3.)
%e A167503 Thus the 4th digit is zero, followed by the m.s.d. of the next term which is nonzero, thus a(4)=5.
%e A167503 Terms of the sequence:_ 1,2,10,12,20,21,100,101
%e A167503 Position of the digits: 1 2 34 56 78 9A BCD EFG (A=10,...)
%e A167503 Thus the numbers 4,8,12,13,15,..., which give the positions of digits '0', are not in this sequence.
%o A167503 (PARI) base(n,b=3,s=1) = { my( a=[ n%b ]); while( 0<n\=b, a=concat( n%b, a )); if( s, eval( Strchr( vectorsmall( #a,i,48+a[i] ))), a) }
%o A167503 {a=b=[]; for(n=1,99, #b>=n & for(i=a[n-1]+1,#b,b[i] & (a=concat(a,i)) & break); #a<n & a=concat(a,#b+1); b=concat(b,base(a[n],3,0))); apply(base,a)}
%K A167503 nonn,base
%O A167503 1,2
%A A167503 _M. F. Hasler_, Nov 05 2009
%E A167503 Edited by _Charles R Greathouse IV_, Aug 02 2010