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.

A065349 Positions of zeros in A065346.

Original entry on oeis.org

19, 41, 42, 43, 49, 50, 53, 54, 55, 58, 67, 71, 74, 75, 95, 97, 98, 99, 102, 103, 123, 135, 138, 139, 145, 149, 153, 154, 155, 159, 163, 165, 166, 167, 168, 169, 170, 173, 174, 175, 178, 179, 180, 183, 184, 185, 191, 193, 194, 195, 197, 198, 199, 200, 201, 202
Offset: 1

Views

Author

Labos Elemer, Oct 30 2001

Keywords

Crossrefs

Programs

  • Mathematica
    ris = {}; Do[If[Mod[Binomial[2 n, n], (n + 1) (n + 2) (n + 3) (n + 4)] == 0, AppendTo[ris, n]], {n, 250}]; ris (* Bruno Berselli, Jan 06 2014 *)
  • PARI
    isok(k) = { binomial(2*k, k) % ((k + 1)*(k + 2)*(k + 3)*(k + 4)) == 0 } \\ Harry J. Smith, Oct 17 2009