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!)
A145204 Numbers whose representation in base 3 (A007089) ends in an odd number of zeros. 19

%I #69 May 16 2021 01:55:50

%S 0,3,6,12,15,21,24,27,30,33,39,42,48,51,54,57,60,66,69,75,78,84,87,93,

%T 96,102,105,108,111,114,120,123,129,132,135,138,141,147,150,156,159,

%U 165,168,174,177,183,186,189,192,195,201,204,210,213,216,219,222,228,231

%N Numbers whose representation in base 3 (A007089) ends in an odd number of zeros.

%C Previous name: Complement of A007417.

%C Also numbers having infinitary divisor 3, or the same, having factor 3 in their Fermi-Dirac representation as product of distinct terms of A050376. - _Vladimir Shevelev_, Mar 18 2013

%C For n > 1: where even terms occur in A051064. - _Reinhard Zumkeller_, May 23 2013

%C If we exclude a(1) = 0, these are numbers whose squarefree part is divisible by 3, which can be partitioned into numbers whose squarefree part is congruent to 3 mod 9 (A055041) and 6 mod 9 (A055040) respectively. - _Peter Munn_, Jul 14 2020

%C The inclusion of 0 as a term might be viewed as a cultural preference: if we habitually wrote numbers enclosed in brackets and then used a null string of digits for zero, the natural number sequence in ternary would be [], [1], [2], [10], [11], [12], [20], ... . - _Peter Munn_, Aug 02 2020

%C The asymptotic density of this sequence is 1/4. - _Amiram Eldar_, Sep 20 2020

%H Reinhard Zumkeller, <a href="/A145204/b145204.txt">Table of n, a(n) for n = 1..10000</a>

%H Aviezri S. Fraenkel, <a href="http://dx.doi.org/10.1016/j.disc.2011.03.032">The vile, dopey, evil and odious game players</a>, Discrete Math. 312 (2012), no. 1, 42-46.

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

%F a(n) = 3 * A007417(n-1) for n > 1.

%F A014578(a(n)) = 0.

%F For n > 1, A007949(a(n)) mod 2 = 1. [Edited by _Peter Munn_, Aug 02 2020]

%F {a(n) : n >= 2} = {A052330(A042964(k)) : k >= 1} = {A064614(A036554(k)) : k >= 1}. - Peter Munn, Aug 31 2019 and Dec 06 2020

%p isA145204 := proc(n) local d, c;

%p if n = 0 then return true fi;

%p d := A007089(n); c := 0;

%p while irem(d, 10) = 0 do c := c+1; d := iquo(d, 10) od;

%p type(c, odd) end:

%p select(isA145204, [$(0..231)]); # _Peter Luschny_, Aug 05 2020

%t Select[ Range[0, 235], (# // IntegerDigits[#, 3]& // Split // Last // Count[#, 0]& // OddQ)&] (* _Jean-François Alcover_, Mar 18 2013 *)

%t Join[{0}, Select[Range[235], OddQ @ IntegerExponent[#, 3] &]] (* _Amiram Eldar_, Sep 20 2020 *)

%o (Haskell)

%o a145204 n = a145204_list !! (n-1)

%o a145204_list = 0 : map (+ 1) (findIndices even a051064_list)

%o -- _Reinhard Zumkeller_, May 23 2013

%o # Python

%o import numpy as np

%o def isA145204(n):

%o if n == 0: return True

%o c = 0

%o d = int(np.base_repr(n, base = 3))

%o while d % 10 == 0:

%o c += 1

%o d //= 10

%o return c % 2 == 1

%o print([n for n in range(231) if isA145204(n)]) # _Peter Luschny_, Aug 05 2020

%Y Subsequence of A008585, A028983.

%Y Subsequences: A016051, A055040, A055041, A329575.

%Y Cf. A007089, A007417 (complement), A050376, A182581 (characteristic function).

%Y Positions of 0s in A014578.

%Y Excluding 0: the positions of odd numbers in A007949; equivalently, of even numbers in A051064; symmetric difference of A003159 and A036668.

%Y Related to A042964 via A052330.

%Y Related to A036554 via A064614.

%K nonn

%O 1,2

%A _Reinhard Zumkeller_, Oct 04 2008

%E New name using a comment of _Vladimir Shevelev_ by _Peter Luschny_, Aug 05 2020

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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)