A334742 Pascal's spiral: starting with a(1) = 1, proceed in a square spiral, computing each term as the sum of horizontally and vertically adjacent prior terms.
1, 1, 1, 2, 2, 3, 3, 4, 5, 5, 6, 7, 7, 8, 10, 12, 12, 14, 17, 20, 20, 23, 27, 32, 37, 37, 42, 48, 55, 62, 62, 69, 77, 87, 99, 111, 111, 123, 137, 154, 174, 194, 194, 214, 237, 264, 296, 333, 370, 370, 407, 449, 497, 552, 614, 676, 676, 738, 807, 884, 971, 1070
Offset: 1
Examples
Spiral begins: 111--99--87--77--69--62 | 12--12--10---8---7 62 | | | 14 2---2---1 7 55 | | | | | 17 3 1---1 6 48 | | | | 20 3---4---5---5 42 | | 20--23--27--32--37--37 a(15) = 10 = 8 + 2, the sum of the cells immediately to the right and below. The term to the left is not included in the sum because it has not yet occurred in the spiral.
Links
- Peter Kagey, Table of n, a(n) for n = 1..10000
- Peter Kagey, Bitmap illustrating the parity of the first 2^20=1048576 terms. (Even and odd numbers are represented with black and white pixels respectively.)
Comments