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.

A381515 a(n) = Sum_{j=1..n} Stirling2(n-1,j-1) * a(n-j) for n>=1, starting with a(0) = 1.

Original entry on oeis.org

1, 1, 1, 2, 5, 16, 71, 432, 3446, 35805, 493247, 9055817, 219034736, 6924788187, 287364757172, 15747872749912, 1138063678023858, 107917571120653077, 13417659577126888599, 2194989270698166806727, 473329783091262653789042, 134287984058139116699933228
Offset: 0

Views

Author

Alois P. Heinz, Feb 25 2025

Keywords

Crossrefs

Programs

  • Maple
    a:= proc(n) option remember; `if`(n=0, 1,
          add(a(n-j)*Stirling2(n-1, j-1), j=1..n))
        end:
    seq(a(n), n=0..23);