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!)
A321627 The Riordan square of the double factorial of odd numbers. Triangle T(n, k), 0 <= k <= n, read by rows. 2
1, 1, 1, 3, 4, 1, 15, 21, 7, 1, 105, 144, 48, 10, 1, 945, 1245, 372, 84, 13, 1, 10395, 13140, 3357, 726, 129, 16, 1, 135135, 164745, 35415, 6873, 1233, 183, 19, 1, 2027025, 2399040, 434520, 73116, 12306, 1920, 246, 22, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
The Riordan square is defined in A321620.
Triangle, read by rows, given by [1, 2, 3, 4, 5, 6, 7, …] DELTA [1, 0, 0, 0, 0, 0, 0, 0, …] where DELTA is the operator defined in A084938. - Philippe Deléham, Feb 17 2020
LINKS
EXAMPLE
Triangle starts:
[0][ 1]
[1][ 1, 1]
[2][ 3, 4, 1]
[3][ 15, 21, 7, 1]
[4][ 105, 144, 48, 10, 1]
[5][ 945, 1245, 372, 84, 13, 1]
[6][ 10395, 13140, 3357, 726, 129, 16, 1]
[7][135135, 164745, 35415, 6873, 1233, 183, 19, 1]
MAPLE
# The function RiordanSquare is defined in A321620.
cf := proc(dim) local k, m; m := 1;
for k from dim by -1 to 1 do m := 1 - k*x/m od;
1/m end: RiordanSquare(cf(9), 9);
MATHEMATICA
(* The function RiordanSquare is defined in A321620. *)
cf[dim_] := Module[{k, m=1}, For[k=dim, k >= 1, k--, m = 1 - k*x/m]; 1/m];
RiordanSquare[cf[9], 9] (* Jean-François Alcover, Jun 15 2019, from Maple *)
CROSSREFS
First column are the double factorial of odd numbers A001147.
Second column is number of singletons in pair-partitions A233481.
Row sums are A321628, alternating row sums are A000007.
Cf. A321620.
Sequence in context: A059110 A100326 A303728 * A350557 A028338 A039757
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Dec 07 2018
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 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)