The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A193636 Triangle: T(n,k) = C(3n-2k,k), 0 <= k <= n. 2
1, 1, 1, 1, 4, 1, 1, 7, 10, 1, 1, 10, 28, 20, 1, 1, 13, 55, 84, 35, 1, 1, 16, 91, 220, 210, 56, 1, 1, 19, 136, 455, 715, 462, 84, 1, 1, 22, 190, 816, 1820, 2002, 924, 120, 1, 1, 25, 253, 1330, 3876, 6188, 5005, 1716, 165, 1, 1, 28, 325, 2024, 7315, 15504, 18564 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
Robert Israel, Table of n, a(n) for n = 0..10010 (rows 0 to 140, flattened)
FORMULA
T(n,k) = C(3n-2k,k), 0 <= k <= n.
G.f. as triangle: (1-x*y)^2/(1 - x - 3*x*y + 3*x^2*y^2 - x^3*y^3). - Robert Israel, Nov 06 2018
T(n,k) = A102547(3*n,k). - R. J. Mathar, Apr 26 2024
EXAMPLE
First 5 rows:
1;
1, 1;
1, 4, 1;
1, 7, 10, 1;
1, 10, 28, 20, 1; [Corrected by Robert Israel, Nov 06 2018]
MAPLE
seq(seq(binomial(3*n-2*k, k), k=0..n), n=0..10); # Robert Israel, Nov 06 2018
MATHEMATICA
p[n_, k_] := Binomial[3 n - 2 k, k];
Table[p[n, k], {n, 0, 9}, {k, 0, n}] (* A193636 *)
Flatten[%]
PROG
(Magma) /* As triangle */[[Binomial(3*n-2*k, k): k in [0..n]]: n in [0.. 15]]; // Vincenzo Librandi, Nov 07 2018
CROSSREFS
Cf. A193635.
Sequence in context: A146771 A073697 A209414 * A232968 A119673 A144447
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Aug 01 2011
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 May 31 19:57 EDT 2024. Contains 373003 sequences. (Running on oeis4.)