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!)
A194121 Triangular array: T(n,k)=C(n+2,k)+C(n+2,k+1)+C(n+2,k+2), 0<=k<=n. 2
4, 7, 7, 11, 14, 11, 16, 25, 25, 16, 22, 41, 50, 41, 22, 29, 63, 91, 91, 63, 29, 37, 92, 154, 182, 154, 92, 37, 46, 129, 246, 336, 336, 246, 129, 46, 56, 175, 375, 582, 672, 582, 375, 175, 56, 67, 231, 550, 957, 1254, 1254, 957, 550, 231, 67, 79, 298, 781 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
T(n,k)=C(n+2,k)+C(n+2,k+1)+C(n+2,k+2), 0<=k<=n.
EXAMPLE
Northwest corner:
4
7....7
11...14...11
16...25...25...16
22...41...50...41...22
29...63...91...91...63..29
MATHEMATICA
T[n_, k_] := Binomial[n + 2, k] + Binomial[n + 2, k + 1] + Binomial[n + 2, k + 2]
Flatten[Table[T[n, k], {n, 0, 10}, {k, 0, n}]]
(* A194121 as a sequence *)
TableForm[Table[T[n, k], {n, 0, 10}, {k, 0, n}]]
(* A194121 as an array *)
CROSSREFS
Sequence in context: A061891 A310931 A310932 * A063194 A071529 A349537
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Aug 16 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 June 9 11:11 EDT 2024. Contains 373239 sequences. (Running on oeis4.)