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!)
A138779 Triangle read by rows: T(n,k)=k*binomial(n-2k,3k+1) (n>=6, 0<=k<=(n-1)/5). 0
1, 5, 15, 35, 70, 126, 2, 210, 16, 330, 72, 495, 240, 715, 660, 1001, 1584, 3, 1365, 3432, 33, 1820, 6864, 198, 2380, 12870, 858, 3060, 22880, 3003, 3876, 38896, 9009, 4, 4845, 63648, 24024, 56, 5985, 100776, 58344, 420 (list; graph; refs; listen; history; text; internal format)
OFFSET
6,2
COMMENTS
Row n contains floor((n-1)/5) terms.
Row sums yield A137360.
REFERENCES
D. E. Knuth, The Art of Computer Programming, Vol. 4A, Section 7.1.4.
LINKS
MAPLE
T:=proc(n, k) options operator, arrow: k*binomial(n-2*k, 3*k+1) end proc: for n from 6 to 23 do seq(T(n, k), k=1..(n-1)*1/5) end do; # yields sequence in triangular form
MATHEMATICA
Select[Flatten[Table[k*Binomial[n-2k, 3k+1], {n, 6, 30}, {k, 0, (n-1)/5}]], #>0&] (* Harvey P. Dale, May 24 2015 *)
CROSSREFS
Cf. A137360.
Sequence in context: A289389 A008487 A000743 * A341184 A090580 A000332
KEYWORD
nonn,tabf
AUTHOR
Emeric Deutsch, May 10 2008
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 14 16:19 EDT 2024. Contains 372533 sequences. (Running on oeis4.)