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.

A373762 Row sums of A372208.

Original entry on oeis.org

1, 217, 74817, 38539585, 28298839105, 28542001395321, 38373467110900417, 67090004454772224577, 149396282278530354664065, 416286791407819616695337305, 1429531867781567785731492164161, 5970020679482790599504907148094337, 29968790185674786127576736257632006337, 178970673260482220421285467858990357293945
Offset: 1

Views

Author

Aleks Zigon Tankosic, Jun 17 2024

Keywords

Crossrefs

Cf. A372208.

Programs

  • Maple
    T := proc(n) local T, k; T := proc(n, k) option remember; if n = k then 1; elif k < 3 or n < k then 0; else T(n - 1, k - 1) + (n + k - 1)^3*T(n - 1, k); end if; end proc; add(T(n, k), k = 3 .. n); end proc;
    seq(T(n), n = 0 .. 18);