login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A279211 Fill an array by antidiagonals upwards; in the n-th cell, enter the number of earlier cells that can be seen from that cell. 5

%I #39 Jul 14 2020 23:18:36

%S 0,1,2,2,4,4,3,5,6,6,4,6,8,8,8,5,7,9,10,10,10,6,8,10,12,12,12,12,7,9,

%T 11,13,14,14,14,14,8,10,12,14,16,16,16,16,16,9,11,13,15,17,18,18,18,

%U 18,18,10,12,14,16,18,20,20,20,20,20,20,11,13,15,17

%N Fill an array by antidiagonals upwards; in the n-th cell, enter the number of earlier cells that can be seen from that cell.

%C "That can be seen from" means "that are on the same row, column, diagonal, or antidiagonal as".

%C Inspired by A279967.

%C Since the sum of row and column index is constant for elements in an antidiagonal, the entries along an antidiagonal on and above the diagonal equal twice the number of the antidiagonal. - _Hartmut F. W. Hoft_, Jun 29 2020

%H Alec Jones, <a href="/A279211/b279211.txt">Table of n, a(n) for n = 0..5049</a>

%F T(x,y) = x+3*y if x >= y; T(x,y) = 2*(x+y) if x <= y.

%F T(i, j) = i + 2*j + min(i, j). - _Hartmut F. W. Hoft_, Jun 29 2020

%e The array begins:

%e x\y| 0 1 2 3 4 5 6 ...

%e ---+--------------------

%e 0| 0 2 4 6 8 10 12 ...

%e 1| 1 4 6 8 10 12 ...

%e 2| 2 5 8 10 12 ...

%e 3| 3 6 9 12 ...

%e 4| 4 7 10 13 ...

%e 5| 5 8 11 14 ...

%e 6| ...

%e ...

%e For example, when we get to the antidiagonal that reads 4, 6, 8 ..., the reason for the 8 is that from that cell we can see two cells that have been filled in above it (containing 4 and 6), two cells to the northwest (0, 4), two cells to the west (2, 5), and two to the southwest (4, 6), which is 8 cells, so a(12) = 8.

%t countCells[i_, j_] := i + 2*j + Min[i, j]

%t a279211[m_] := Map[countCells[m - #, #]&, Range[0, m]]

%t Flatten[Map[a279211,Range[0,10]]] (* antidiagonals 0..10 data - _Hartmut F. W. Hoft_, Jun 29 2020 *)

%Y Cf. A279966, A279967, A279212.

%Y See A280026, A280027 for similar sequences based on a spiral.

%K nonn,tabl

%O 0,3

%A _N. J. A. Sloane_, Dec 24 2016

%E More terms from _Alec Jones_, Dec 25 2016

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)