OFFSET
1,1
COMMENTS
Consider the triangle formed by replacing each m in Pascal's triangle with sigma(m). Then this sequence consists of the row indices where there is a term that is equal to the sum of its NW and N neighbors as in a Pascal triangle.
EXAMPLE
PROG
(PARI) T(n, k) = sigma(binomial(n, k));
isokT(n, k) = T(n-1, k-1) + T (n-1, k) == T(n, k);
isokn(n) = for (k=1, n-1, if (isokT(n, k), return(1)));
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Mar 21 2017
STATUS
approved