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.

A073077 Numbers k that divide C(2k,k) and C(4k,2k).

Original entry on oeis.org

1, 2, 20, 110, 156, 210, 220, 238, 240, 312, 460, 468, 483, 510, 561, 600, 624, 665, 684, 696, 720, 744, 770, 806, 812, 816, 868, 936, 966, 1001, 1012, 1045, 1064, 1100, 1110, 1122, 1144, 1155, 1170, 1200, 1295, 1309, 1320, 1326, 1332, 1360, 1368, 1394, 1404
Offset: 1

Views

Author

Benoit Cloitre, Aug 17 2002

Keywords

Crossrefs

Subsequence of A014847.

Programs

  • Mathematica
    Select[Range[1500], Divisible[Binomial[2*#, #], #] && Divisible[Binomial[4*#, 2*#], #] &] (* Amiram Eldar, Apr 26 2025 *)
  • PARI
    isok(n) = !(binomial(2*n, n) % n) && !(binomial(4*n, 2*n) % n); \\ Michel Marcus, Nov 28 2013

Extensions

More terms from Michel Marcus, Nov 28 2013