Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A104711
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A104711 Triangle T(n,m) = sum_{k=m..n} A001263(k,m). +0
2
1, 2, 1, 3, 4, 1, 4, 10, 7, 1, 5, 20, 27, 11, 1, 6, 35, 77, 61, 16, 1, 7, 56, 182, 236, 121, 22, 1, 8, 84, 378, 726, 611, 218, 29, 1, 9, 120, 714, 1902, 2375, 1394, 365, 37, 1, 10, 165, 1254, 4422, 7667, 6686, 2885, 577, 46, 1, 11, 220, 2079, 9372, 21527, 26090, 16745 (list; table; graph; listen)
OFFSET

1,2

COMMENT

This summation over columns of the Narayana triangle could also be defined as a multiplication

of the Narayana triangle from the left by the lower-left triangle represented by the all-1 sequence A000012.

FORMULA

Row sums: sum_{m=1..n} T(n,m) = A014138(n).

EXAMPLE

First few rows of the triangle are:

1;

2, 1;

3, 4, 1;

4, 10, 7, 1;

5, 20, 27, 11, 1;

6, 35, 77, 61, 16, 1;

...

PROGRAM

(Python3) import math

def binomial(n, m): ...return math.factorial(n)//math.factorial(m)//math.factorial(n-m)

def A001263(n, m): ...return binomial(n-1, m-1)*binomial(n, m-1)//m

def A104711(n, m): ...a =0 ...for k in range(m, n+1): ......a += A001263(k, m) ...return a

print( [A104711(n, m) for n in range(20) for m in range(1, n+1)] ) # R. J. Mathar, Oct 11 2009

CROSSREFS

Cf. A014138, A104710, A005585, A000124.

Sequence in context: A143326 A053122 A078812 this_sequence A133112 A159856 A137649

Adjacent sequences: A104708 A104709 A104710 this_sequence A104712 A104713 A104714

KEYWORD

nonn,tabl

AUTHOR

Gary W. Adamson (qntmpkt(AT)yahoo.com), Mar 19 2005

EXTENSIONS

Extended by R. J. Mathar, (mathar(AT)strw.leidenuniv.nl), Oct 11 2009

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified December 6 22:55 EST 2009. Contains 170429 sequences.


AT&T Labs Research