login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A112333 An invertible triangle of ratios of triple factorials. 5
1, 2, 1, 10, 5, 1, 80, 40, 8, 1, 880, 440, 88, 11, 1, 12320, 6160, 1232, 154, 14, 1, 209440, 104720, 20944, 2618, 238, 17, 1, 4188800, 2094400, 418880, 52360, 4760, 340, 20, 1, 96342400, 48171200, 9634240, 1204280, 109480, 7820, 460, 23, 1, 2504902400 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,2

COMMENTS

First column is A008544. Second column is A034000. Third column is A051605. As a square array read by anti-diagonals, columns have e.g.f. (1/(1-3x)^(2/3))*(1/(1-3x))^k

FORMULA

Number triangle T(n, k)=if(k<=n, Product{k=1..n, 3k-1}/Product{j=1..k, 3j-1}, 0); T(n, k)=if(k<=n, 3^(n-k)*(n-1/3)!/(k-1/3)!, 0).

EXAMPLE

Triangle begins

1;

2,1;

10,5,1;

80,40,8,1;

880,440,88,11,1;

12320,6160,1232,154,14,1;

Inverse triangle A112334 begins

1;

-2,1;

0,-5,1;

0,0,-8,1;

0,0,0,-11,1;

0,0,0,0,-14,1;

0,0,0,0,0,-17,1;

MAPLE

nmax:=8: for n from 0 to nmax do for k from 0 to n do if k<=n then T(n, k):= product(3*k1-1, k1=1..n)/ product(3*j-1, j=1..k) else T(n, k):= 0: fi: od: od: for n from 0 to nmax do seq(T(n, k), k=0..n) od: Tx:=0: for n from 0 to nmax do for k from 0 to n do a(Tx):=T(n, k): Tx:=Tx+1: od: od: seq(a(n), n=0..Tx-1); [Johannes W. Meijer, Jul 04 2011]

CROSSREFS

Sequence in context: A136216 A121334 A126450 * A066868 A193900 A143172

Adjacent sequences:  A112330 A112331 A112332 * A112334 A112335 A112336

KEYWORD

easy,nonn,tabl

AUTHOR

Paul Barry (pbarry(AT)wit.ie), Sep 04 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 11:36 EST 2012. Contains 205623 sequences.