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.

A065346 a(n) = binomial(2*n, n) mod ((n+1)*(n+2)*(n+3)*(n+4)).

Original entry on oeis.org

2, 6, 20, 70, 252, 924, 3432, 990, 14300, 16588, 17472, 39676, 4760, 18360, 46512, 29070, 30780, 87780, 0, 191268, 273240, 322920, 140400, 58500, 190008, 350784, 402752, 611320, 81840, 649264, 41888, 164934, 264180, 295260, 1316016, 694564
Offset: 1

Views

Author

Labos Elemer, Oct 30 2001

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Mod[Binomial[2 n, n], (n + 1) (n + 2) ((n + 3) (n + 4))], {n, 100}] (* Bruno Berselli, Jan 06 2014 *)
  • PARI
    a(n) = { binomial(2*n, n) % ((n + 1)*(n + 2)*(n + 3)*(n + 4)) } \\ Harry J. Smith, Oct 17 2009