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!)
A127718 A007318 * A002260 as infinite lower triangular matrices; A002260 = [1; 1,2; 1,2,3; ...]. 2
1, 2, 2, 4, 6, 3, 8, 14, 12, 4, 16, 30, 33, 20, 5, 32, 62, 78, 64, 30, 6, 64, 126, 171, 168, 110, 42, 7, 128, 254, 360, 396, 320, 174, 56, 8, 256, 510, 741, 876, 815, 558, 259, 72, 9, 512, 1022, 1506, 1864, 1910, 1536, 910, 368, 90, 10, 1024, 2046, 3039, 3872, 4240 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Binomial transform of A002260.
Row sums = A084851: (1, 4, 13, 38, 104, 272, ...) A002260 * A007318 = A127717.
LINKS
FORMULA
T(n,k) = Sum_{i=1..n} A007318(n-1,i-1)*A002260(i,k). - R. J. Mathar, Oct 02 2007
EXAMPLE
First few rows of the triangle:
1;
2, 2;
4, 6, 3;
8, 14, 12, 4;
16, 30, 33, 20, 5;
32, 62, 78, 64, 30, 6;
64, 126, 171, 168, 110, 42, 7;
...
MAPLE
A007318 := proc(n, k) binomial(n, k) ; end: A002260 := proc(n, k) if k <= n then k; else 0 ; fi ; end: A127718 := proc(n, k) add( A007318(n-1, i-1)*A002260(i, k), i=1..n) ; end: for n from 1 to 15 do for k from 1 to n do printf("%d, ", A127718(n, k)) ; od: od: # R. J. Mathar, Oct 02 2007
CROSSREFS
Sequence in context: A305125 A260095 A209999 * A115068 A051495 A368157
KEYWORD
nonn,tabl,easy
AUTHOR
Gary W. Adamson, Jan 25 2007
EXTENSIONS
More terms from R. J. Mathar, Oct 02 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 April 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)