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.

A087186 Q(p)/p where p runs through the primes and Q(k) is the k-th central quadrinomial coefficient (A005190).

Original entry on oeis.org

2, 4, 31, 304, 40044, 500522, 86094668, 1167752848, 225001039696, 652498288154820, 9451735761626880, 29731605314969017772, 6529673496702876605072, 97300805803445759460364, 21809340225815485957990464, 74647602337610140872493303186, 260456466719887195671579173952976
Offset: 1

Views

Author

Benoit Cloitre, Oct 19 2003

Keywords

Crossrefs

Cf. A005190.

Programs

  • Mathematica
    f[n_] := Max[CoefficientList[Expand[Sum[x^k, {k, 0, 3}]^n], x]]; Table[f[p]/p, {p, Prime[Range[15]]}] (* Amiram Eldar, Apr 25 2025 *)