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!)
A134081 Triangle T(n, k) = binomial(n, k)*((2*k+1)*(n-k) +k+1)/(k+1), read by rows. 4
1, 2, 1, 3, 5, 1, 4, 12, 8, 1, 5, 22, 26, 11, 1, 6, 35, 60, 45, 14, 1, 7, 51, 115, 125, 69, 17, 1, 8, 70, 196, 280, 224, 98, 20, 1, 9, 92, 308, 546, 574, 364, 132, 23, 1, 10, 117, 456, 966, 1260, 1050, 552, 171, 26, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
Binomial transform of A112295(unsigned).
From G. C. Greubel, Feb 17 2021: (Start)
T(n, k) = binomial(n, k)*((2*k+1)*(n-k) +k+1)/(k+1).
Sum_{k=0..n} T(n, k) = 2^n *n + 1 = A002064(n). (End)
EXAMPLE
First few rows of the triangle are:
1;
2, 1;
3, 5, 1;
4, 12, 8, 1;
5, 22, 26, 11, 1;
6, 35, 60, 45, 14, 1;
7, 51, 115, 125, 69, 17, 1;
...
MATHEMATICA
T[n_, k_]:= Binomial[n, k]*((2*k+1)*(n-k) +k+1)/(k+1);
Table[T[n, k], {n, 0, 12}, {k, 0, n}]//Flatten (* G. C. Greubel, Feb 17 2021 *)
PROG
(Sage)
def A134081(n, k): return binomial(n, k)*((2*k+1)*(n-k) +k+1)/(k+1)
flatten([[A134081(n, k) for k in (0..n)] for n in (0..12)]) # G. C. Greubel, Feb 17 2021
(Magma)
A134081:= func< n, k | Binomial(n, k)*((2*k+1)*(n-k) +k+1)/(k+1) >;
[A134081(n, k): k in [0..n], n in [0..12]]; // G. C. Greubel, Feb 17 2021
CROSSREFS
Sequence in context: A210233 A347667 A297582 * A134247 A210225 A180906
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Oct 07 2007
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 16 12:32 EDT 2024. Contains 372552 sequences. (Running on oeis4.)