OFFSET
1,5
REFERENCES
Lynn Arthur Steen and J. Arthur Seebach, Counterexamples in Topology, Dover (1978) 57-58
FORMULA
T(n,2*m) = 0. T(n,2*m+1) = 3^n.
EXAMPLE
1
0, 0
1, 3, 9
0, 0, 0, 0
1, 3, 9, 27, 81
0, 0, 0, 0, 0, 0
1, 3, 9, 27, 81, 243, 729
MATHEMATICA
a[n_] := 1 - Mod[n, 2] T1[n_, m_] := 3^n*a[m] a0 = Table[Table[T1[n, m], {n, 0, m}], {m, 0, 10}]; Flatten[a0] MatrixForm[a0]
CROSSREFS
KEYWORD
AUTHOR
Roger L. Bagula, Sep 21 2006
EXTENSIONS
Definition simplified by the Assoc. Eds. of the OEIS, Mar 27 2010
STATUS
approved