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!)
A116445 Array read by antidiagonals: the binomial transform of the sequence (1,2,..n,0,0,0..) in row n. 3
1, 1, 1, 1, 3, 1, 1, 3, 5, 1, 1, 3, 8, 7, 1, 1, 3, 8, 16, 9, 1, 1, 3, 8, 20, 27, 11, 1, 1, 3, 8, 20, 43, 41, 13, 1, 1, 3, 8, 20, 48, 81, 58, 15, 1, 1, 3, 8, 20, 48, 106, 138, 78, 17, 1, 1, 3, 8, 20, 48, 112, 213, 218, 101, 19, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
Create an array by rows: (binomial transforms of 1,0,0,0,...; 1,2,0,0,0,...; 1,2,3,0,0,0,...; etc.). Antidiagonals of the array become rows of the triangle.
LINKS
EXAMPLE
First few rows of the array:
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...
1, 3, 5, 7, 9, 11, 13, 15, 17, ...
1, 3, 8, 16, 27, 41, 58, 78, 101, ... A104249
1, 3, 8, 20, 43, 81, 138, 218, ... A139488
1, 3, 8, 20, 48, 106, 213, ...
1, 3, 8, 20, 48, 112, 249, ...
...
Diagonals converge to A001792, binomial transform of (1,2,3,...); and the first few rows of the triangle created by reading upwards antidiagonals are:
1
1, 1;
1, 3, 1;
1, 3, 5, 1;
1, 3, 8, 7, 1;
1, 3, 8, 16, 9, 1;
1, 3, 8, 20, 27, 22, 1;
...
a(4), a(5), a(6) = 1, 3, 1 = antidiagonals of the array becoming row three of the triangle.
MAPLE
A116445 := proc(n, k)
local a, i ;
a := 0 ;
for i from 0 to n do
a := a+binomial(k, i)*(i+1) ;
end do:
a ;
end proc:
seq(seq(A116445(d-k, k), k=0..d), d=0..12) ; # R. J. Mathar, Aug 17 2022
CROSSREFS
Cf. A001629 (antidiagonal sums), A104249.
Sequence in context: A218618 A271451 A131248 * A110291 A152027 A077308
KEYWORD
nonn,tabl,easy
AUTHOR
Gary W. Adamson, Feb 15 2006
EXTENSIONS
Detailed NAME by R. J. Mathar, Aug 17 2022
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 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)