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.

A126994 a(n) = binomial(prime(n+5), prime(n)).

Original entry on oeis.org

1, 78, 680, 11628, 245157, 34597290, 206253075, 15905368710, 244662670200, 960566918220, 4568648125690, 462525733568080, 8964377427999630, 6236646703759395, 972963730453314600, 5300174441392685400
Offset: 0

Views

Author

Artur Jasinski, Jan 01 2007

Keywords

Crossrefs

Programs

  • Magma
    [Binomial(NthPrime(n+5), NthPrime(n)): n in [1..20]]; // G. C. Greubel, May 29 2019
    
  • Mathematica
    Table[Binomial[Prime[n+5], Prime[n]], {n, 0, 20}]
  • PARI
    vector(20, n, binomial(prime(n+5), prime(n))) \\ G. C. Greubel, May 29 2019
    
  • Sage
    [binomial(nth_prime(n+5), nth_prime(n)) for n in (1..20)] # G. C. Greubel, May 29 2019

Extensions

Missing n=0 term added by N. J. A. Sloane, May 17 2020