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.

Showing 1-1 of 1 results.

A371487 Expansion of e.g.f. Product_{k>=2} 1 / (1 - x^k/k).

Original entry on oeis.org

1, 0, 1, 2, 12, 44, 380, 2064, 20888, 166368, 1872792, 18917040, 253473792, 3042859104, 45895372224, 661334985024, 11073993828480, 182021308975104, 3418263102400128, 63023443312105728, 1302276954815368704, 26806365139264980480, 603186053115872024064, 13651035149069305878528
Offset: 0

Views

Author

Ilya Gutkovskiy, Mar 25 2024

Keywords

Crossrefs

Programs

  • Maple
    with(combinat):
    b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<2, 0, add(
         (i-1)!^j*b(n-i*j, i-1)*multinomial(n, n-i*j, i$j), j=0..n/i)))
        end:
    a:= n-> b(n$2):
    seq(a(n), n=0..23);  # Alois P. Heinz, Mar 26 2024
  • Mathematica
    nmax = 23; CoefficientList[Series[Product[1/(1 - x^k/k), {k, 2, nmax}], {x, 0, nmax}], x] Range[0, nmax]!
Showing 1-1 of 1 results.