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.

A240803 a(n) = 2 + product of first n odd primes.

Original entry on oeis.org

5, 17, 107, 1157, 15017, 255257, 4849847, 111546437, 3234846617, 100280245067, 3710369067407, 152125131763607, 6541380665835017, 307444891294245707, 16294579238595022367, 961380175077106319537, 58644190679703485491637, 3929160775540133527939547, 278970415063349480483707697
Offset: 1

Views

Author

N. J. A. Sloane, Apr 14 2014

Keywords

Crossrefs

Programs

  • Magma
    [2+&*[NthPrime(i+1): i in [1..n]]: n in [1..20]]; // Vincenzo Librandi, Apr 15 2014
  • Mathematica
    Table[Product[Prime[k + 1], {k, 1, n}] + 2, {n, 1, 30}] (* Vincenzo Librandi, Apr 15 2014 *)