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!)
A144463 Triangle T(n,m) read by rows: T(n,m)= A013609(n,m) if m <= n/2, T(n,m)= T(n,n-m) otherwise. 2
1, 1, 1, 1, 4, 1, 1, 6, 6, 1, 1, 8, 24, 8, 1, 1, 10, 40, 40, 10, 1, 1, 12, 60, 160, 60, 12, 1, 1, 14, 84, 280, 280, 84, 14, 1, 1, 16, 112, 448, 1120, 448, 112, 16, 1, 1, 18, 144, 672, 2016, 2016, 672, 144, 18, 1, 1, 20, 180, 960, 3360, 8064, 3360, 960, 180, 20, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Row sums are 1, 2, 6, 14, 42, 102, 306, 758, 2274, 5702, 17106,...
LINKS
EXAMPLE
T(n,m) = 2^m*binomial(n,m) if 0 <= m <= n/2, T(n,m)= 2^(n-m)*binomial(n,m) if n/2 <= m <= n.
1;
1, 1;
1, 4, 1;
1, 6, 6, 1;
1, 8, 24, 8, 1;
1, 10, 40, 40, 10, 1;
1, 12, 60, 160, 60, 12, 1;
1, 14, 84, 280, 280, 84, 14, 1;
1, 16, 112, 448, 1120, 448, 112, 16, 1;
1, 18, 144, 672, 2016, 2016, 672, 144, 18, 1;
1, 20, 180, 960, 3360, 8064, 3360, 960, 180, 20, 1;
MATHEMATICA
Clear[f, t]; f[n_, m_] = If[m <= Floor[n/2], m, n - m]; t[n_, m_] = Binomial[n, m]*2^f[n, m]; Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}]; Flatten[%]
CROSSREFS
Sequence in context: A143188 A102413 A144480 * A174376 A131399 A069322
KEYWORD
nonn,tabl,easy
AUTHOR
EXTENSIONS
Offset corrected, keyword:tabl inserted by the Assoc. Eds. of the OEIS, Jun 30 2010
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 16 03:22 EDT 2024. Contains 371696 sequences. (Running on oeis4.)