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.

A294989 Number of compositions (ordered partitions) of 1 into exactly 10n+1 powers of 1/(n+1).

Original entry on oeis.org

1, 68958747, 27212315953140892, 39880061006390454401626995, 110656003660578876500875377620844376, 423205992807070499591372608204571223421862945, 1944053748730350081768848916806347783770184147756976500
Offset: 0

Views

Author

Alois P. Heinz, Nov 12 2017

Keywords

Crossrefs

Row n=10 of A294746.

Programs

  • Maple
    b:= proc(n, r, p, k) option remember;
          `if`(n (k-> `if`(n=0, 1, b(k*n+1, 1, 0, n+1)))(10):
    seq(a(n), n=0..10);
  • Mathematica
    b[n_, r_, p_, k_] := b[n, r, p, k] = If[n < r, 0, If[r == 0, If[n == 0, p!, 0], Sum[b[n - j, k*(r - j), p + j, k]/j!, {j, 0, Min[n, r]}]]];
    a[n_] := If[n == 0, 1, b[#*n + 1, 1, 0, n + 1]]&[10];
    Table[a[n], {n, 0, 10}] (* Jean-François Alcover, May 21 2018, translated from Maple *)

Formula

a(n) ~ 10^(10*n + 3/2) / (2*Pi*n)^(9/2). - Vaclav Kotesovec, Sep 20 2019