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!)
A079510 Triangle T(n,k) read by rows; related to number of preorders. 3
1, 0, 2, 0, 3, 6, 0, 0, 20, 24, 0, 0, 15, 130, 120, 0, 0, 0, 210, 924, 720, 0, 0, 0, 105, 2380, 7308, 5040, 0, 0, 0, 0, 2520, 26432, 64224, 40320, 0, 0, 0, 0, 945, 44100, 303660, 623376, 362880, 0, 0, 0, 0, 0, 34650, 705320, 3678840, 6636960, 3628800 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
There are only m nonzero entries in the m-th column.
LINKS
G. Kreweras, Les préordres totaux compatibles avec un ordre partiel, Math. Sci. Humaines No. 53 (1976), 5-30. (See the array on page 29.)
G. Kreweras, Les préordres totaux compatibles avec un ordre partiel, Math. Sci. Humaines No. 53 (1976), 5-30. (Annotated scanned copy)
EXAMPLE
Triangle begins:
1;
0, 2;
0, 3, 6;
0, 0, 20, 24;
0, 0, 15, 130, 120;
...
MATHEMATICA
T[n_, k_]:= If[k < 1 || k > n, 0, If[n==1 && k==1, 1, n*(T[n-1, k-1] + T[n-2, k-1])]]; Table[T[n, k], {n, 1, 10}, {k, 1, n}]//Flatten (* G. C. Greubel, Jan 17 2019 *)
PROG
(PARI) T(n, k)=if(k<=0 || k>n, 0, if(n==1 && k==1, 1, n*(T(n-1, k-1)+T(n-2, k-1))));
CROSSREFS
A rearrangement of the triangle in A008306. - Benoit Cloitre, Jan 27 2003
Sequence in context: A334495 A155800 A276658 * A216255 A362788 A262256
KEYWORD
nonn,tabl
AUTHOR
N. J. A. Sloane, Jan 21 2003
EXTENSIONS
Recurrence and more terms from Michael Somos, Jan 23 2003
Offset changed to 1 by G. C. Greubel, Jan 17 2019
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 18 15:42 EDT 2024. Contains 371780 sequences. (Running on oeis4.)