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.

A246244 Sum of ninth powers of coefficients in full expansion of (z_1+z_2+...+z_n)^n.

Original entry on oeis.org

1, 1, 514, 10195797, 2703788516356, 5361940142039062505, 55063667396158825603112136, 2272169230481993564658922073502463, 312894608313254360747865383525129561090056, 124773193097402414339622625011223384066643153613969
Offset: 0

Views

Author

Alois P. Heinz, Aug 19 2014

Keywords

Crossrefs

Column k=9 of A245397.

Programs

  • Maple
    b:= proc(n, i) option remember; `if`(n=0 or i=1, 1,
          add(b(n-j, i-1)*binomial(n, j)^9, j=0..n))
        end:
    a:= n-> b(n$2):
    seq(a(n), n=0..15);

Formula

a(n) = [x^n] (n!)^9 * (Sum_{j=0..n} x^j/(j!)^9)^n.