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!)
A065420 Triangle T(n,k) = binomial(n+2,k+1)*(binomial(n+2,k+1)-1), n >=0, 0 <= k <= n. 2
2, 6, 6, 12, 30, 12, 20, 90, 90, 20, 30, 210, 380, 210, 30, 42, 420, 1190, 1190, 420, 42, 56, 756, 3080, 4830, 3080, 756, 56, 72, 1260, 6972, 15750, 15750, 6972, 1260, 72, 90, 1980, 14280, 43890, 63252, 43890, 14280, 1980, 90, 110, 2970, 27060, 108570, 212982 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
T(n,k) = T(n,n-k). - Robert Israel, Jan 08 2017
LINKS
Robert Israel, Table of n, a(n) for n = 0..10010 (rows 0 to 140, flattened)
FORMULA
From Robert Israel, Jan 08 2017: (Start)
T(n,0) = (n+1)*(n+2) = A002378(n+1).
T(n,1) = n*(n+1)*(n+2)*(n+3)/4 = A033487(n). (End)
EXAMPLE
2; 6,6; 12,30,12; 20,90,90,20; ...
MAPLE
T:= (n, k) -> binomial(n+2, k+1)*(binomial(n+2, k+1)-1):
seq(seq(T(n, k), k=0..n), n=0..10); # Robert Israel, Jan 08 2017
MATHEMATICA
#(#-1)&/@Table[Binomial[n+2, k+1], {n, 0, 10}, {k, 0, n}]//Flatten (* Harvey P. Dale, Sep 02 2018 *)
CROSSREFS
Sequence in context: A075779 A241301 A140880 * A119312 A309415 A051398
KEYWORD
nonn,easy,tabl
AUTHOR
Gary W. Adamson, Nov 15 2001
EXTENSIONS
More terms from Naohiro Nomoto, Nov 22 2001
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)