OFFSET
1,2
COMMENTS
Indexes of 0's in A048622. - Sean A. Irvine, Jun 24 2021
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..1000
EXAMPLE
For m=23, A001222 for binomial(23,k) = {0,1,2,3,4,4,5,5,6,6,6,6,6,6,6,6,5,5,4,4,3,2,1,0}, thus both the maximal and central values are 6, so 23 is a term.
MATHEMATICA
Select[Range[120], Function[n, ar = PrimeOmega[#] & /@ Binomial[n, Range[0, n/2]]; Max[ar] == ar[[-1]]]] (* Ivan Neretin, Sep 07 2015 *)
PROG
(PARI) isok(m) = vecmax(apply(bigomega, vector(m+1, k, binomial(m, k-1)))) == bigomega(binomial(m, m\2)); \\ Michel Marcus, Jun 25 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved