cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A207982 Least m>1 such that all central binomial coefficients C(2k,k), k<=n, are pairwise not congruent mod m.

Original entry on oeis.org

2, 3, 5, 11, 11, 11, 23, 23, 23, 31, 43, 43, 43, 43, 59, 59, 59, 59, 107, 149, 151, 151, 151, 151, 163, 163, 163, 163, 163, 163, 163, 163, 163, 277, 277, 277, 277, 401, 401, 457, 457, 457, 457, 457, 457, 457, 479, 479, 479, 479, 479, 479, 479, 479, 479, 479
Offset: 1

Views

Author

M. F. Hasler, Feb 22 2012

Keywords

Programs

  • PARI
    m=2; for(n=1,99, forstep(nn=n,2,-1,for(k=1,nn-1,(binomial(nn*2,nn)-binomial(2*k,k))%m&next; m++; nn=n+1;next(2))); print1(m", "))