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.

A229676 a(n) = Sum_{k = 0..n} Product_{j = 0..8} C(n+j*k,k).

This page as a plain text file.
%I A229676 #13 Oct 07 2018 18:29:42
%S A229676 1,362881,12504639772801,1080492192338314694401,
%T A229676 140810184334251776225321193601,
%U A229676 23183593018924832394604719137184142081,4439414110286267003192333763481728593177802241,944848564471993704169724618186222285154304912036663681
%N A229676 a(n) = Sum_{k = 0..n} Product_{j = 0..8} C(n+j*k,k).
%C A229676 Number of lattice paths from {n}^9 to {0}^9 using steps that decrement one component or all components by 1.
%H A229676 Alois P. Heinz, <a href="/A229676/b229676.txt">Table of n, a(n) for n = 0..100</a>
%F A229676 a(n) = Sum_{k = 0..n} multinomial(n+8*k; n-k, {k}^9).
%F A229676 G.f.: Sum_{k >= 0} (9*k)!/k!^9 * x^k / (1-x)^(9*k+1).
%F A229676 exp( Sum_{n >= 1} a(n)*x^n/n ) = 1 + x + 181441*x^2 + 4168213439041*x^3 + 270123052269252349441*x^4 + ... appears to have integer coefficients. - _Peter Bala_, Jan 13 2016
%p A229676 with(combinat):
%p A229676 a:= n-> add(multinomial(n+8*k, n-k, k$9), k=0..n):
%p A229676 seq(a(n), n=0..10);
%t A229676 multinomial[n_, k_List] := n!/Times @@ (k!); a[n_] := Sum[multinomial[n + 8*k, Join[{n - k}, Array[k&, 9]]], {k, 0, n}]; Table[a[n], {n, 0, 10}] (* _Jean-François Alcover_, Dec 27 2013, translated from Maple *)
%Y A229676 Column k = 9 of A229142.
%K A229676 nonn,easy
%O A229676 0,2
%A A229676 _Alois P. Heinz_, Sep 27 2013