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!)
A125092 Triangle read by rows: T(n,k) = (k+1)^2*binomial(n,k) (0 <= k <= n). 2
1, 1, 4, 1, 8, 9, 1, 12, 27, 16, 1, 16, 54, 64, 25, 1, 20, 90, 160, 125, 36, 1, 24, 135, 320, 375, 216, 49, 1, 28, 189, 560, 875, 756, 343, 64, 1, 32, 252, 896, 1750, 2016, 1372, 512, 81, 1, 36, 324, 1344, 3150, 4536, 4116, 2304, 729, 100, 1, 40, 405, 1920, 5250, 9072 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Binomial transform of the infinite diagonal matrix (1,4,9,16,...).
Sum of entries in row n = (n+1)*(n+4)*2^(n-2) = A001793(n+1).
LINKS
EXAMPLE
First few rows of the triangle:
1;
1, 4;
1, 8, 9;
1, 12, 27, 16;
1, 16, 54, 64, 25;
1, 20, 90, 160, 125, 36;
...
MAPLE
T:=(n, k)->(k+1)^2*binomial(n, k): for n from 0 to 11 do seq(T(n, k), k=0..n) od; # yields sequence in triangular form
MATHEMATICA
Table[(k+1)^2 Binomial[n, k], {n, 0, 10}, {k, 0, n}]//Flatten (* Harvey P. Dale, Feb 20 2023 *)
CROSSREFS
Cf. A001793.
Sequence in context: A128414 A192014 A019699 * A122914 A245566 A016689
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Nov 19 2006
EXTENSIONS
Edited by N. J. A. Sloane, Nov 29 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 May 12 18:22 EDT 2024. Contains 372494 sequences. (Running on oeis4.)