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!)
A013613 Triangle of coefficients in expansion of (1+6x)^n. 7
1, 1, 6, 1, 12, 36, 1, 18, 108, 216, 1, 24, 216, 864, 1296, 1, 30, 360, 2160, 6480, 7776, 1, 36, 540, 4320, 19440, 46656, 46656, 1, 42, 756, 7560, 45360, 163296, 326592, 279936, 1, 48, 1008, 12096, 90720, 435456, 1306368, 2239488, 1679616 (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,...,6} having n-k zeros. - Milan Janjic, Jul 24 2015
LINKS
Michael De Vlieger and Reinhard Zumkeller, Table of n, a(n) for n = 0..11475 (rows 0 <= n <= 150, flattened, rows 0..125 from Reinhard Zumkeller)
Ömür Deveci and Anthony G. Shannon, Some aspects of Neyman triangles and Delannoy arrays, Mathematica Montisnigri (2021) Vol. L, 36-43.
FORMULA
G.f.: 1 / (1 - x(1+6y)).
T(n,k) = 6^k*C(n,k) = Sum_{i=n-k..n} C(i,n-k)*C(n,i)*5^(n-i). Row sums are 7^n = A000420. - Mircea Merca, Apr 28 2012
T(n,k) = A007318(n,k)*A000400(k), 0 <= k <= n. - Reinhard Zumkeller, Nov 21 2013
EXAMPLE
Triangle begins:
1;
1, 6;
1, 12, 36;
1, 18, 108, 216;
1, 24, 216, 864, 1296;
...
PROG
(Haskell)
import Data.List (inits)
a013613 n k = a013613_tabl !! n !! k
a013613_row n = a013613_tabl !! n
a013613_tabl = zipWith (zipWith (*))
(tail $ inits a000400_list) a007318_tabl
-- Reinhard Zumkeller, Nov 21 2013
CROSSREFS
Cf. A038255 (mirrored).
Sequence in context: A229085 A090850 A163945 * A122508 A171006 A176121
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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)