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”).

A326822
T(n, k) = k^0 if k = 1 else 0^n. Triangle read by rows, T(n, k) for 0 <= k <= n.
0
1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
OFFSET
0
EXAMPLE
[1]
[0, 1]
[0, 1, 0]
[0, 1, 0, 0]
[0, 1, 0, 0, 0]
[0, 1, 0, 0, 0, 0]
[0, 1, 0, 0, 0, 0, 0]
PROG
(Julia)
T(n, k) = k == 1 ? k^0 : 0^n
for n in 0:10 println([T(n, k) for k in 0:n]) end
CROSSREFS
Essentially the same as A073424, A073423 and A010054.
Sequence in context: A036988 A108357 A309848 * A088517 A325897 A040053
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Nov 19 2019
STATUS
approved