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!)
A369595 Array read by antidiagonals: A(n,k) = A(n-1,k+2) + Sum_{j=0..k} binomial(k,j)*A(n-1,j) with A(0,k) = 1, n >= 0, k >= 0. 1
1, 1, 2, 1, 3, 7, 1, 5, 14, 37, 1, 9, 30, 89, 264, 1, 17, 68, 227, 737, 2433, 1, 33, 162, 611, 2169, 7696, 27913, 1, 65, 404, 1727, 6695, 25480, 98093, 386906, 1, 129, 1050, 5099, 21573, 87964, 358993, 1490687, 6346119, 1, 257, 2828, 15647, 72287, 315688 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
EXAMPLE
Array begins:
=============================================================
n\k| 0 1 2 3 4 5 6 ...
---+---------------------------------------------------------
0 | 1 1 1 1 1 1 1 ...
1 | 2 3 5 9 17 33 65 ...
2 | 7 14 30 68 162 404 1050 ...
3 | 37 89 227 611 1727 5099 15647 ...
4 | 264 737 2169 6695 21573 72287 251109 ...
5 | 2433 7696 25480 87964 315688 1174756 4522480 ...
6 | 27913 98093 358993 1364681 5376121 21901073 92076673 ...
...
PROG
(PARI)
A(m, n=m)={my(r=vectorv(m+1), v=vector(n+2*m+1, k, 1)); r[1] = v[1..n+1];
for(i=1, m, v=vector(#v-2, k, v[k+2] + sum(j=1, k, binomial(k-1, j-1)*v[j])); r[1+i] = v[1..n+1]); Mat(r)}
{ A(6) }
CROSSREFS
Column k=0 is A135920 (without initial term and with different offset).
Sequence in context: A073901 A116381 A176120 * A220621 A360587 A058170
KEYWORD
nonn,tabl
AUTHOR
Mikhail Kurkov, Jan 27 2024 [verification needed]
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 July 24 14:22 EDT 2024. Contains 374584 sequences. (Running on oeis4.)