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.

A174309 Value of the polynomial y = (x^(2n-1) + 1)/(x + 1) at the point x = discriminant of y.

Original entry on oeis.org

1, 13, 242203001, 22540681439108936194378057, 273892687731183836066546120028455556686378073137630689
Offset: 1

Views

Author

Artur Jasinski, Mar 15 2010

Keywords

Crossrefs

Programs

  • Mathematica
    s = {}; Do[pol = Simplify[(x^n + 1)/(x + 1)]; d = Discriminant[pol, x]; AppendTo[s, pol /. x -> d], {n, 1, 10, 2}]; s
  • PARI
    a(n) = my(p=(x^(2*n-1) + 1)/(x + 1)); subst(p, x, poldisc(p)); \\ Michel Marcus, Mar 02 2023