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.

A374862 Obverse convolution A000201**A000201; see Comments.

Original entry on oeis.org

0, 1, 18, 256, 5400, 153664, 4251528, 146410000, 5159780352, 215051077696, 10497600000000, 516094438514944, 28802430771288192, 1806336000000000000, 113638807576776480768, 7916729578225695719424, 558793544769287109375000, 42995640737555012867053824
Offset: 0

Views

Author

Clark Kimberling, Aug 18 2024

Keywords

Comments

See A374848 for the definition of obverse convolution and a guide to related sequences. a(2k+1) is a square for k>=0.

Crossrefs

Programs

  • Mathematica
    r = GoldenRatio;
    s[n_] := Floor[n*r];
    u[n_] := Product[s[k] + s[n - k], {k, 0, n}]
    Table[u[n], {n, 0, 20}]