login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A122759
Triangle T(n,m) read by rows: 3^n if m is odd, 0 if m is even.
0
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, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 9, 27, 81, 243, 729, 2187, 6561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 9, 27, 81, 243, 729, 2187, 6561, 19683, 59049
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
Sequence in context: A063103 A058847 A088110 * A247042 A274400 A200495
KEYWORD
nonn,tabl,easy,less
AUTHOR
Roger L. Bagula, Sep 21 2006
EXTENSIONS
Definition simplified by the Assoc. Eds. of the OEIS, Mar 27 2010
STATUS
approved