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.

A271266 a(n) = Product_{k=1..n} (k^2 + 21).

Original entry on oeis.org

1, 22, 550, 16500, 610500, 28083000, 1600731000, 112051170000, 9524349450000, 971483643900000, 117549520911900000, 16692031969489800000, 2754185274965817000000, 523295202243505230000000, 113555058886840634910000000, 27934544486162796187860000000, 7737868822667094544037220000000
Offset: 0

Views

Author

Michel Marcus, Apr 03 2016

Keywords

Comments

Yin et al. prove that a(n) is never a square for n > 0.

Crossrefs

Programs

  • Mathematica
    Table[Product[k^2 + 21, {k, n}], {n, 0, 16}] (* Michael De Vlieger, Apr 03 2016 *)
  • PARI
    a(n) = prod(k=1, n, (k^2+21));