login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A174374
Derivative Pascal's triangle (version 2) read by rows: smallest prime(n)>C(m,k)=binomial(m,k)=m!/(k!*(m-k)!), 0<=k<=m.
0
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 3, 4, 3, 1, 1, 4, 5, 5, 4, 1, 1, 4, 7, 9, 7, 4, 1, 1, 5, 9, 12, 12, 9, 5, 1, 1, 5, 10, 17, 20, 17, 10, 5, 1, 1, 5, 12, 24, 31, 31, 24, 12, 5, 1, 1, 5, 15, 31, 47, 55, 47, 31, 15, 5, 1, 1, 6, 17, 39, 67, 90, 90, 67, 39, 17, 6, 1, 1, 6, 19, 48, 95, 139, 158, 139
OFFSET
1,5
EXAMPLE
Triangle begins:
1
1, 1
1, 2, 1
1, 3, 3, 1
1, 3, 4, 3, 1
1, 4, 5, 5, 4, 1
1, 4, 7, 9, 7, 4, 1
1, 5, 9, 12, 12, 9, 5, 1
1, 5, 10, 17, 20, 17, 10, 5, 1
1, 5, 12, 24, 31, 31, 24, 12, 5, 1
1, 5, 15, 31, 47, 55, 47, 31, 15, 5, 1
1, 6, 17, 39, 67, 90, 90, 67, 39, 17, 6, 1
PROG
(PARI) t(n, k) = primepi(nextprime(binomial(n, k)+1)) \\ Michel Marcus, Apr 13 2013
CROSSREFS
Cf. A007318.
Sequence in context: A351522 A157458 A174447 * A242641 A347187 A027948
KEYWORD
nonn,tabl
AUTHOR
STATUS
approved