cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A360860 Accumulation triangle of A360603 read by rows.

This page as a plain text file.
%I A360860 #7 Mar 06 2023 08:02:22
%S A360860 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 A360860 1664,2424,6064,32768,0,32768,38912,42752,48832,70672,230896,2097152,
%U A360860 0,2097152,2326528,2412544,2497664,2701504,3823072,16886864,268435456
%N A360860 Accumulation triangle of A360603 read by rows.
%e A360860 [0] 1;
%e A360860 [1] 0,     1;
%e A360860 [2] 0,     1,     2;
%e A360860 [3] 0,     2,     4,     8;
%e A360860 [4] 0,     8,    14,    26,    64;
%e A360860 [5] 0,    64,    96,   144,   296,  1024;
%e A360860 [6] 0,  1024,  1344,  1664,  2424,  6064,  32768;
%e A360860 [7] 0, 32768, 38912, 42752, 48832, 70672, 230896, 2097152;
%o A360860 (Python)
%o A360860 from itertools import accumulate
%o A360860 def A360860Row(n: int) -> list[int]:
%o A360860     return list(accumulate(A360603Row(n)))
%o A360860 for n in range(8): print(A360860Row(n))
%Y A360860 Cf. A360603, A006125, A054592.
%K A360860 nonn,tabl
%O A360860 0,6
%A A360860 _Peter Luschny_, Feb 26 2023