A330168 Length of the longest run of 2's in the ternary expression of n.
0, 0, 1, 0, 0, 1, 1, 1, 2, 0, 0, 1, 0, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 2, 3, 0, 0, 1, 0, 0, 1, 1, 1, 2, 0, 0, 1, 0, 0, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 4, 0, 0, 1, 0, 0, 1, 1, 1, 2, 0
Offset: 0
Examples
For n = 74, the ternary expression of 74 is 2202. The length of the runs of 2's in the ternary expression of 74 are 2 and 1, respectively. The larger of these two values is 2, so a(74) = 2. n [ternary n] a(n) 0 [ 0] 0 1 [ 1] 0 2 [ 2] 1 3 [ 1 0] 0 4 [ 1 1] 0 5 [ 1 2] 1 6 [ 2 0] 1 7 [ 2 1] 1 8 [ 2 2] 2 9 [ 1 0 0] 0 10 [ 1 0 1] 0 11 [ 1 0 2] 1 12 [ 1 1 0] 0 13 [ 1 1 1] 0 14 [ 1 1 2] 1 15 [ 1 2 0] 1 16 [ 1 2 1] 1 17 [ 1 2 2] 2 18 [ 2 0 0] 1 19 [ 2 0 1] 1 20 [ 2 0 2] 1
Links
- Wikipedia, Ternary numeral system.
Crossrefs
Programs
-
Mathematica
Table[Max@FoldList[If[#2==2,#1+1,0]&,0,IntegerDigits[n,3]],{n,0,90}]
Comments