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!)
A131110 A000012 * A133084. 6
1, 3, 1, 6, 3, 1, 10, 6, 5, 1, 15, 10, 15, 5, 1, 21, 15, 35, 15, 7, 1, 28, 21, 70, 35, 28, 7, 1, 36, 28, 126, 70, 84, 28, 9, 1, 45, 36, 210, 126, 210, 84, 45, 9, 1, 55, 45, 330, 210, 462, 210, 165, 45, 11, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Row sums give A033484.
Duplicate of A133093. - Georg Fischer, Oct 10 2021
LINKS
FORMULA
A000012 * A133084 as infinite lower triangular matrices.
EXAMPLE
First few rows of the triangle are:
1;
3, 1;
6, 3, 1;
10, 6, 5, 1;
15, 10, 15, 5, 1;
21, 15, 35, 15, 7, 1;
28, 21, 70, 35, 28, 7, 1;
...
PROG
(PARI) T4(n, k) = if(k == n, 1, (1 - (1 + (-1)^k)/2 )*binomial(n, k) + ((1 + (-1)^k)/2)*binomial(n - 1, k - 1)); \\ A133084
N=10; matrix(N, N, n, k, if(n>=k, 1))*matrix(N, N, n, k, T4(n, k)) \\ Michel Marcus, Oct 11 2021
CROSSREFS
Sequence in context: A124928 A249250 A122432 * A133093 A065567 A100861
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Sep 08 2007
EXTENSIONS
a(46) corrected by Georg Fischer, Oct 10 2021
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 19:25 EDT 2024. Contains 372494 sequences. (Running on oeis4.)