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!)
A124848 Triangle read by rows: T(n,k) = (k+1)*(k+2)*(k+3)*binomial(n,k)/6 (0 <= k <= n). 1
1, 1, 4, 1, 8, 10, 1, 12, 30, 20, 1, 16, 60, 80, 35, 1, 20, 100, 200, 175, 56, 1, 24, 150, 400, 525, 336, 84, 1, 28, 210, 700, 1225, 1176, 588, 120, 1, 32, 280, 1120, 2450, 3136, 2352, 960, 165, 1, 36, 360, 1680, 4410, 7056, 7056, 4320, 1485, 220, 1, 40, 450, 2400, 7350 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Sum of entries in row n = (2^n/48)*(n+4)*(n^2 + 11n + 12) = A049612(n+1).
LINKS
EXAMPLE
Triangle starts:
1;
1, 4;
1, 8, 10;
1, 12, 30, 20;
1, 16, 60, 80, 35;
1, 20, 100, 200, 175, 56;
1, 24, 150, 400, 525, 336, 84;
MAPLE
T:=(n, k)->(k+1)*(k+2)*(k+3)*binomial(n, k)/6: for n from 0 to 10 do seq(T(n, k), k=0..n) od; # yields sequence in triangular form
MATHEMATICA
Flatten[Table[(k+1)(k+2)(k+3) Binomial[n, k]/6, {n, 0, 10}, {k, 0, n}]] (* Harvey P. Dale, May 14 2012 *)
CROSSREFS
Sequence in context: A016689 A105533 A179193 * A090219 A264285 A125129
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Nov 10 2006
EXTENSIONS
Edited by N. J. A. Sloane, Dec 02 2006
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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)