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.

A293197 E.g.f.: Product_{m>0} (1+x^m+x^(2*m)/2!+x^(3*m)/3!+x^(4*m)/4!+x^(5*m)/5!).

Original entry on oeis.org

1, 1, 3, 13, 73, 501, 4050, 37632, 394296, 4595976, 58932720, 823949280, 12467513520, 202933851120, 3534322952160, 65559527953920, 1290129736896000, 26840074522060800, 588476031700677120, 13560642403296468480, 327603687047488051200, 8278733693718654566400
Offset: 0

Views

Author

Seiichi Manyama, Oct 02 2017

Keywords

Crossrefs

Column k=5 of A293135.

Programs

  • Maple
    b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
          add(b(n-i*j, i-1)/j!, j=0..min(5, n/i))))
        end:
    a:= n-> n!*b(n$2):
    seq(a(n), n=0..23);  # Alois P. Heinz, Oct 02 2017