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!)
A073617 Consider Pascal's triangle A007318; a(n) = product of terms at +45 degrees slope with the horizontal. 5
1, 1, 1, 2, 3, 12, 30, 240, 1050, 16800, 132300, 4233600, 61122600, 3911846400, 104886381600, 13425456844800, 674943865596000, 172785629592576000, 16407885372638760000, 8400837310791045120000, 1515727634953623371280000, 1552105098192510332190720000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
The sum of the terms pertaining to the above product is the (n+1)-th Fibonacci number: 1 + 5 + 6 + 1 = 13.
n divides A073617(n+1) for n>=1; see the Mathematica section. [Clark Kimberling, Feb 29 2012]
LINKS
FORMULA
a(n) = Product_{k=0..floor(n/2)} binomial(n-k,k).
a(2n+1)/a(2n-1) = binomial(2n,n); a(2n)/a(2n-2) = (1/2)*binomial(2n,n); (a(2n+1)*a(2n-2))/(a(2n)*a(2n-1))] = 2. - John Molokach, Sep 09 2013
EXAMPLE
For n=6 the diagonal is 1,5,6,1 and product of the terms = 30 hence a(6) = 30.
MAPLE
a:= n-> mul(binomial(n-i, i), i=0..floor(n/2)):
seq(a(n), n=0..21); # Alois P. Heinz, Nov 27 2023
MATHEMATICA
p[n_] := Product[Binomial[n + 1 - k, k], {k, 1, Floor[(n + 1)/2]}]
Table[p[n], {n, 1, 20}] (* A073617(n+1) *)
Table[p[n]/n, {n, 1, 20}] (* A208649 *)
( * Clark Kimberling, Feb 29 2012 *)
CROSSREFS
Sequence in context: A105401 A325595 A256031 * A034381 A076424 A165301
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Aug 07 2002
EXTENSIONS
More terms from Antonio G. Astudillo (afg_astudillo(AT)lycos.com), Mar 22 2003
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 28 22:27 EDT 2024. Contains 372095 sequences. (Running on oeis4.)