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!)
A013614 Triangle of coefficients in expansion of (1+7x)^n. 4
1, 1, 7, 1, 14, 49, 1, 21, 147, 343, 1, 28, 294, 1372, 2401, 1, 35, 490, 3430, 12005, 16807, 1, 42, 735, 6860, 36015, 100842, 117649, 1, 49, 1029, 12005, 84035, 352947, 823543, 823543, 1, 56, 1372, 19208, 168070, 941192, 3294172, 6588344, 5764801 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
T(n,k) equals the number of n-length words on {0,1,...,7} having n-k zeros. - Milan Janjic, Jul 24 2015
LINKS
FORMULA
G.f.: 1 / (1 - x(1+7y)).
T(n,k) = 7^k*C(n,k) = Sum_{i=n-k..n} C(i,n-k)*C(n,i)*6^(n-i). Row sums are 8^n = A001018. - Mircea Merca, Apr 28 2012
EXAMPLE
Triangle starts:
1;
1, 7;
1, 14, 49;
1, 21, 147, 343;
1, 28, 294, 1372, 2401;
1, 35, 490, 3430, 12005, 16807;
...
MAPLE
T:= n-> (p-> seq(coeff(p, x, k), k=0..n))((1+7*x)^n):
seq(T(n), n=0..10); # Alois P. Heinz, Jul 24 2015
MATHEMATICA
T[n_, k_] := 7^k*Binomial[n, k];
Table[T[n, k], {n, 0, 10}, {k, 0, n}] // Flatten (* Jean-François Alcover, May 23 2016 *)
CROSSREFS
Cf. A000420 (right edge).
Sequence in context: A040055 A317016 A348983 * A179530 A098081 A125234
KEYWORD
tabl,nonn,easy
AUTHOR
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 19 23:40 EDT 2024. Contains 371798 sequences. (Running on oeis4.)