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.

A125550 a(n) = C(prime(n+2), prime(n)).

Original entry on oeis.org

10, 35, 462, 1716, 12376, 27132, 100947, 20030010, 7888725, 38608020, 1121099408, 6096454, 10737573, 19499099620, 1119487075980, 2944827765, 6522361560, 461738052776, 170230452, 26088783435
Offset: 1

Views

Author

Artur Jasinski, Jan 01 2007

Keywords

Crossrefs

Cf. A058077.

Programs

  • Mathematica
    Table[Binomial[Prime[x + 2], Prime[x]], {x, 1, 20}]
    Binomial[Last[#],First[#]]&/@Partition[Prime[Range[50]],3,1] (* Harvey P. Dale, Oct 29 2013 *)