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.

A374893 Obverse convolution (n)**A000984; see Comments.

Original entry on oeis.org

1, 4, 54, 2240, 294000, 127534176, 189691951680, 994556567347200, 18760374808177860000, 1292781708803753625600000, 329281303607781567523264143360, 312866979311142515971112580848148480, 1117139877664193310898467728367016525532160
Offset: 0

Views

Author

Clark Kimberling, Sep 14 2024

Keywords

Comments

See A374848 for the definition of obverse convolution and a guide to related sequences.

Crossrefs

Programs

  • Mathematica
    s[n_] := n; t[n_] := Binomial[2 n, n];
    u[n_] := Product[s[k] + t[n - k], {k, 0, n}]
    Table[u[n], {n, 0, 14}]