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

A360860
Accumulation triangle of A360603 read by rows.
1
1, 0, 1, 0, 1, 2, 0, 2, 4, 8, 0, 8, 14, 26, 64, 0, 64, 96, 144, 296, 1024, 0, 1024, 1344, 1664, 2424, 6064, 32768, 0, 32768, 38912, 42752, 48832, 70672, 230896, 2097152, 0, 2097152, 2326528, 2412544, 2497664, 2701504, 3823072, 16886864, 268435456
OFFSET
0,6
EXAMPLE
[0] 1;
[1] 0, 1;
[2] 0, 1, 2;
[3] 0, 2, 4, 8;
[4] 0, 8, 14, 26, 64;
[5] 0, 64, 96, 144, 296, 1024;
[6] 0, 1024, 1344, 1664, 2424, 6064, 32768;
[7] 0, 32768, 38912, 42752, 48832, 70672, 230896, 2097152;
PROG
(Python)
from itertools import accumulate
def A360860Row(n: int) -> list[int]:
return list(accumulate(A360603Row(n)))
for n in range(8): print(A360860Row(n))
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Feb 26 2023
STATUS
approved