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.

A081767 Numbers k such that k^2 - 1 divides binomial(2k,k).

Original entry on oeis.org

2, 16, 21, 29, 43, 46, 67, 78, 89, 92, 105, 111, 141, 154, 157, 171, 188, 191, 205, 210, 211, 221, 229, 232, 239, 241, 267, 277, 300, 309, 313, 316, 323, 326, 331, 346, 369, 379, 415, 421, 430, 436, 441, 443, 451, 460, 461, 465, 469, 477, 484, 494, 497, 528
Offset: 1

Views

Author

Benoit Cloitre, Apr 09 2003

Keywords

Comments

Is a(n) asymptotic to c*n with 9 < c < 10?
A subset of A004782: numbers k such that 2(2k-3)!/(k!(k-1)!) is an integer.
Equivalently, numbers k such that k-1 divides A000108(k), the k-th Catalan number. - M. F. Hasler, Nov 11 2015
The data does not appear to support the conjectured asymptote statement (neither the constant nor being linear). - Bill McEachen, Feb 26 2024

Crossrefs

Subsequence of A094575 and of A004782.
Cf. A000108.

Programs

  • Mathematica
    Select[Range[2,600],Divisible[Binomial[2#,#],#^2-1]&] (* Harvey P. Dale, May 11 2013 *)
  • PARI
    for(n=2, 999, binomial(2*n, n)%(n^2-1)||print1(n", ")) \\ M. F. Hasler, Nov 11 2015
    
  • PARI
    is_A081767(n)=!binomod(2*n, n, n^2-1) \\ Using binomod.gp by Max Alekseyev, cf. links. - M. F. Hasler, Nov 11 2015