login
Accumulation triangle of A360603 read by rows.
1

%I #7 Mar 06 2023 08:02:22

%S 1,0,1,0,1,2,0,2,4,8,0,8,14,26,64,0,64,96,144,296,1024,0,1024,1344,

%T 1664,2424,6064,32768,0,32768,38912,42752,48832,70672,230896,2097152,

%U 0,2097152,2326528,2412544,2497664,2701504,3823072,16886864,268435456

%N Accumulation triangle of A360603 read by rows.

%e [0] 1;

%e [1] 0, 1;

%e [2] 0, 1, 2;

%e [3] 0, 2, 4, 8;

%e [4] 0, 8, 14, 26, 64;

%e [5] 0, 64, 96, 144, 296, 1024;

%e [6] 0, 1024, 1344, 1664, 2424, 6064, 32768;

%e [7] 0, 32768, 38912, 42752, 48832, 70672, 230896, 2097152;

%o (Python)

%o from itertools import accumulate

%o def A360860Row(n: int) -> list[int]:

%o return list(accumulate(A360603Row(n)))

%o for n in range(8): print(A360860Row(n))

%Y Cf. A360603, A006125, A054592.

%K nonn,tabl

%O 0,6

%A _Peter Luschny_, Feb 26 2023