1 (**************************************************************************)
4 (* ||A|| A project by Andrea Asperti *)
6 (* ||I|| Developers: *)
7 (* ||T|| The HELM team. *)
8 (* ||A|| http://helm.cs.unibo.it *)
10 (* \ / This file is distributed under the terms of the *)
11 (* v GNU General Public License Version 2 *)
13 (**************************************************************************)
15 include "preamble.ma".
17 (* NOTE: OEIS sequence identifiers
19 T(n): A155504 "(3h+1)*3^(k+1)"
22 inductive P: nat → Prop ≝
24 | p2: ∀i,j. T i → P j → P (i + j)
26 | t1: ∀i. P i → T (i * 3)
27 | t2: ∀i. T i → T (i * 3)
30 inductive S: nat → Prop ≝
31 | s1: ∀i. P i → S (i * 2)
32 | s2: ∀i. T i → S (i * 2)