OFFSET
1,1
COMMENTS
Apart from the (2^i-1)-th rows, there are no obvious divisibility properties that would explain the coincidence. '1' is the 0th row.
EXAMPLE
The 7th, 15th, 31st, ... (2^i-1)-th rows are all included as Pascal's triangle only contains odd terms, thus all numerically adjacent terms are even.
PROG
(PARI) for(n=2, 1000, for(k=1, n\2, ok=1; c=binomial(n, k); if(ispseudoprime(c+1)||ispseudoprime(c-1), ok=0; break; )); if(ok, print1(n, ", ")))
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Phil Carmody, Aug 15 2006
EXTENSIONS
Offset changed to 1 and a(11)-a(13) from Jinyuan Wang, Aug 23 2021
STATUS
approved