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.

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

This page as a plain text file.
%I A246245 #4 Aug 19 2014 20:32:59
%S A246245 1,1,1026,60820473,64146764716036,631284899540195312505,
%T A246245 38539161299138154741325704036,11011511482200093499929279574758403927,
%U A246245 11981061614421454177965724891826362153433952264,42406820883646957465685129173683494532584922157233295569
%N A246245 Sum of tenth powers of coefficients in full expansion of (z_1+z_2+...+z_n)^n.
%H A246245 Alois P. Heinz, <a href="/A246245/b246245.txt">Table of n, a(n) for n = 0..69</a>
%F A246245 a(n) = [x^n] (n!)^10 * (Sum_{j=0..n} x^j/(j!)^10)^n.
%p A246245 b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
%p A246245       add(b(n-j, i-1)*binomial(n, j)^9/j!, j=0..n)))
%p A246245     end:
%p A246245 a:= n-> n!*b(n$2):
%p A246245 seq(a(n), n=0..12);
%Y A246245 Column k=10 of A245397.
%K A246245 nonn
%O A246245 0,3
%A A246245 _Alois P. Heinz_, Aug 19 2014