editing
approved
editing
approved
proposed
approved
editing
proposed
T(n, k) = k^0 if k = 1 else 0^n. Triangle read by rows, T(n, k) for 0 <= k <= n.
nonn,changed,tabl
allocated for Peter LuschnyT(n, k) = k^0 if k = 1 else 0^n.
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
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]
(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
allocated
nonn
Peter Luschny, Nov 19 2019
approved
editing
allocated for Peter Luschny
recycled
allocated
editing
approved
The numbers 2-10 written in bases 2-10 in ascending order. All numbers appear only once.
2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 20, 21, 22, 100, 101, 110, 111, 1000, 1001, 1010
1,1
It appears as n (base and final number) gets bigger the first digits of the sequence are just the numbers 2-n, then it switches to writing the numbers in another base lower than n, then another base lower than that and so on until it reaches base two were the sequence inevitably stops. (Observation)
nonn,base
recycled
Nils Ledin, Oct 17 2019
allocated for Nils LedinThe numbers 2-10 written in bases 2-10 in ascending order. All numbers appear only once.
2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 20, 21, 22, 100, 101, 110, 111, 1000, 1001, 1010
1,1
It appears as n (base and final number) gets bigger the first digits of the sequence are just the numbers 2-n, then it switches to writing the numbers in another base lower than n, then another base lower than that and so on until it reaches base two were the sequence inevitably stops. (Observation)
allocated
nonn,base
Nils Ledin, Oct 17 2019
approved
editing