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!)
A141680 Triangle read by rows: T(n,m) = (n/m)*binomial(n,m) if m divides n, otherwise 0. 2
1, 4, 1, 9, 0, 1, 16, 12, 0, 1, 25, 0, 0, 0, 1, 36, 45, 40, 0, 0, 1, 49, 0, 0, 0, 0, 0, 1, 64, 112, 0, 140, 0, 0, 0, 1, 81, 0, 252, 0, 0, 0, 0, 0, 1, 100, 225, 0, 0, 504, 0, 0, 0, 0, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Row sums are: 1, 5, 10, 29, 26, 122, 50, 317, 334, 830, ... A105862.
LINKS
FORMULA
T(n,m) = A126988(n,m)*binomial(n,m).
T(n,1) = n^2. T(n,n) = 1. T(2n,2) = A015237(n).
EXAMPLE
1;
4, 1;
9, 0, 1;
16, 12, 0, 1;
25, 0, 0, 0, 1;
36, 45, 40, 0, 0, 1;
49, 0, 0, 0, 0, 0, 1;
64, 112, 0, 140, 0, 0, 0, 1;
81, 0, 252, 0, 0, 0, 0, 0, 1;
100, 225, 0, 0, 504, 0, 0, 0, 0, 1;
MATHEMATICA
t[n_, m_] = If[Mod[n, m] == 0, n/m, 0]*Binomial[n, m]; Table[Table[t[n, m], {m, 1, n}], {n, 1, 10}]; Flatten[%]
CROSSREFS
Sequence in context: A036177 A360131 A177841 * A141681 A176215 A364016
KEYWORD
nonn,tabl
AUTHOR
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 24 17:51 EDT 2024. Contains 371962 sequences. (Running on oeis4.)