A334741 Fill an infinite square array by following a spiral around the origin; in the central cell enter a(0)=1; thereafter, in the n-th cell, enter the sum of the entries of those earlier cells that are in the same row or column as that cell.
1, 1, 1, 2, 3, 5, 8, 11, 21, 40, 47, 93, 180, 203, 397, 796, 1576, 1675, 3305, 6636, 13192, 14004, 27607, 55029, 110192, 220024, 226740, 450123, 898661, 1798700, 3594248, 3704800, 7354303, 14681369, 29349536, 58710640, 117394896, 119196748, 237492079
Offset: 0
Keywords
Examples
Spiral begins: 3----2----1 | | 5 1----1 47 | | 8---11---21---40 a(11) = 47 = 1 + 1 + 5 + 40, the sum of the cells in its row and column.
Links
- Peter Kagey, Table of n, a(n) for n = 0..2499
Comments