/- Copyright 2026 The Formal Conjectures Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -/ import FormalConjecturesUtil

Number of zeros in ternary representation of $2^n$

References:

namespace OeisA104320

The primary defining sequence a. a n is the number of zeros in the ternary representation of $2^n$.

def a (n : ) : := (Nat.digits 3 (2 ^ n)).count 0

Term theorems verifying the first few values of the sequence against the official OEIS b-file

@[category test, AMS 11] theorem a_0 : a 0 = 0 := a 0 = 0 All goals completed! 🐙@[category test, AMS 11] theorem a_1 : a 1 = 0 := a 1 = 0 All goals completed! 🐙@[category test, AMS 11] theorem a_2 : a 2 = 0 := a 2 = 0 All goals completed! 🐙@[category test, AMS 11] theorem a_3 : a 3 = 0 := a 3 = 0 All goals completed! 🐙@[category test, AMS 11] theorem a_4 : a 4 = 0 := a 4 = 0 All goals completed! 🐙

Conjecture from N. J. A. Sloane: $a(n) > 0$ for $n > 15$.

@[category research open, AMS 11] theorem conjecture : n : , 15 < n a n > 0 := (n : ), 15 < n OeisA104320.a n > 0 All goals completed! 🐙end OeisA104320