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.

A250092 a(n) = binomial( prime(n+4), prime(n) ).

Original entry on oeis.org

55, 286, 6188, 50388, 1352078, 67863915, 265182525, 17672631900, 202112640600, 78378960360, 1503232609098, 14844575908435, 647520696018735, 1312251244423350, 57963796707857040, 31074067324187580, 369731787035040, 275291011073898820, 51705423561053205
Offset: 1

Views

Author

Vincenzo Librandi, Nov 12 2014

Keywords

Crossrefs

Cf. similar sequences of the type binomial(prime(n+k),prime(n)): A058077 (k=1), A125550 (k=2), A126993 (k=3), this sequence (k=4), A126994 (k=5).

Programs

  • Magma
    [Binomial(NthPrime(n+4),NthPrime(n)): n in [1..20]];
  • Mathematica
    Table[Binomial[Prime[x + 4], Prime[x]], {x, 1, 20}]