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.

Showing 1-1 of 1 results.

A360860 Accumulation triangle of A360603 read by rows.

Original entry on oeis.org

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

Views

Author

Peter Luschny, Feb 26 2023

Keywords

Examples

			[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;
		

Crossrefs

Programs

  • Python
    from itertools import accumulate
    def A360860Row(n: int) -> list[int]:
        return list(accumulate(A360603Row(n)))
    for n in range(8): print(A360860Row(n))
Showing 1-1 of 1 results.