login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A229676 a(n) = Sum_{k = 0..n} Product_{j = 0..8} C(n+j*k,k). 3
1, 362881, 12504639772801, 1080492192338314694401, 140810184334251776225321193601, 23183593018924832394604719137184142081, 4439414110286267003192333763481728593177802241, 944848564471993704169724618186222285154304912036663681 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Number of lattice paths from {n}^9 to {0}^9 using steps that decrement one component or all components by 1.
LINKS
FORMULA
a(n) = Sum_{k = 0..n} multinomial(n+8*k; n-k, {k}^9).
G.f.: Sum_{k >= 0} (9*k)!/k!^9 * x^k / (1-x)^(9*k+1).
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
MAPLE
with(combinat):
a:= n-> add(multinomial(n+8*k, n-k, k$9), k=0..n):
seq(a(n), n=0..10);
MATHEMATICA
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 *)
CROSSREFS
Column k = 9 of A229142.
Sequence in context: A071551 A181725 A195393 * A230754 A205043 A234896
KEYWORD
nonn,easy
AUTHOR
Alois P. Heinz, Sep 27 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 09:48 EDT 2024. Contains 371905 sequences. (Running on oeis4.)