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.

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

This page as a plain text file.
%I A246243 #4 Aug 19 2014 20:25:16
%S A246243 1,1,258,1718985,115245958660,46377854607812505,
%T A246243 80785609177262537107236,486005483266096999009285275991,
%U A246243 8558639841332633529404511878004186120,388791577542234912413815089860741309780872785,41231194444310047390596429351583294775856761836687780
%N A246243 Sum of eighth powers of coefficients in full expansion of (z_1+z_2+...+z_n)^n.
%H A246243 Alois P. Heinz, <a href="/A246243/b246243.txt">Table of n, a(n) for n = 0..80</a>
%F A246243 a(n) = [x^n] (n!)^8 * (Sum_{j=0..n} x^j/(j!)^8)^n.
%p A246243 b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
%p A246243       add(b(n-j, i-1)*binomial(n, j)^7/j!, j=0..n)))
%p A246243     end:
%p A246243 a:= n-> n!*b(n$2):
%p A246243 seq(a(n), n=0..15);
%Y A246243 Column k=8 of A245397.
%K A246243 nonn
%O A246243 0,3
%A A246243 _Alois P. Heinz_, Aug 19 2014