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.

A322381 Denominator of the sum of inverse products of parts in all strict partitions of n.

Original entry on oeis.org

1, 1, 2, 6, 12, 60, 120, 280, 168, 210, 1680, 2640, 332640, 4324320, 8648640, 43243200, 900900, 735134400, 3150576, 2618916300, 83805321600, 586637251200, 586637251200, 749592043200, 2248776129600, 642507465600, 13492656777600, 41644002400, 53970627110400
Offset: 0

Views

Author

Alois P. Heinz, Dec 05 2018

Keywords

Crossrefs

See A322380 for more information.

Programs

  • Maple
    b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
          b(n, i-1) +b(n-i, min(i-1, n-i))/i))
        end:
    a:= n-> denom(b(n$2)):
    seq(a(n), n=0..30);
  • Mathematica
    b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, b[n, i - 1] + b[n - i, Min[i - 1, n - i]]/i]];
    a[n_] := Denominator[b[n, n]];
    a /@ Range[0, 30] (* Jean-François Alcover, Feb 25 2020, after Alois P. Heinz *)