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!)
A007089 Numbers in base 3.
(Formerly M1960)
350

%I M1960 #58 Feb 19 2023 16:20:06

%S 0,1,2,10,11,12,20,21,22,100,101,102,110,111,112,120,121,122,200,201,

%T 202,210,211,212,220,221,222,1000,1001,1002,1010,1011,1012,1020,1021,

%U 1022,1100,1101,1102,1110,1111,1112,1120,1121,1122,1200,1201,1202,1210,1211

%N Numbers in base 3.

%C Nonnegative integers with no decimal digit > 2. Thus nonnegative integers in base 10 whose quadrupling by normal addition or multiplication requires no carry operation. - _Rick L. Shepherd_, Jun 25 2009

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H T. D. Noe, <a href="/A007089/b007089.txt">Table of n, a(n) for n = 0..10000</a>

%H The Unicode Consortium, <a href="http://www.unicode.org/charts/PDF/Unicode-4.0/U40-1D300.pdf">Tai Xuan Jing Symbols</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/Ternary.html">Ternary.</a>

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Ternary_numeral_system">Ternary numeral system</a>

%H R. G. Wilson, V, <a href="/A007088/a007088.pdf">Letter to N. J. A. Sloane, Sep. 1992</a>

%H <a href="/index/Mo#MWP">Index entries for sequences related to Most Wanted Primes video</a>

%H <a href="/index/Ar#10-automatic">Index entries for 10-automatic sequences</a>.

%F a(0)=0, a(n) = 10*a(n/3) if n==0 (mod 3), a(n) = a(n-1) + 1 otherwise. - _Benoit Cloitre_, Dec 22 2002

%F a(n) = 10*a(floor(n/3)) + (n mod 3) if n > 0, a(0) = 0. - _M. F. Hasler_, Feb 15 2023

%p A007089 := proc(n) option remember;

%p if n <= 0 then 0

%p else

%p if (n mod 3) = 0 then 10*procname(n/3) else procname(n-1) + 1 fi

%p fi end:

%p [seq(A007089(n), n=0..729)]; # - _N. J. A. Sloane_, Mar 09 2019

%t Table[ FromDigits[ IntegerDigits[n, 3]], {n, 0, 50}]

%o (PARI) a(n)=if(n<1,0,if(n%3,a(n-1)+1,10*a(n/3)))

%o (PARI) a(n)=fromdigits(digits(n,3)) \\ _Charles R Greathouse IV_, Jan 08 2017

%o (Haskell)

%o a007089 0 = 0

%o a007089 n = 10 * a007089 n' + m where (n', m) = divMod n 3

%o -- _Reinhard Zumkeller_, Feb 19 2012

%o (Python)

%o def A007089(n):

%o n,s = divmod(n,3); t = 1

%o while n: n,r = divmod(n,3); t *= 10; s += r*t

%o return s # _M. F. Hasler_, Feb 15 2023

%Y Cf. A000042, A007088, A007090, A007091, A007092, A007093, A007094, A007095, A077267, A062756, A081603, A081604, A054635, A003137.

%Y Primes when read as if in base 10: A036954.

%K base,nonn,easy

%O 0,3

%A _N. J. A. Sloane_, _Robert G. Wilson v_

%E More terms from _James A. Sellers_, May 01 2000

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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)