The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A357079 Triangle read by rows. T(n, k) = A356265(n, k) + A357078(n, k) for 0 <= k <= n. 1
1, 0, 1, 0, 1, 1, 0, 3, 2, 1, 0, 9, 12, 2, 1, 0, 49, 37, 31, 2, 1, 0, 329, 149, 176, 63, 2, 1, 0, 2561, 794, 853, 702, 127, 2, 1, 0, 22369, 5599, 3836, 5709, 2549, 255, 2, 1, 0, 216225, 47275, 18422, 37609, 33949, 8886, 511, 2, 1, 2291457, 451176, 107535, 218506, 344670, 184653, 29777, 1023, 2, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
The triangle is the termwise sum of a refinement of the number of irreducible permutations A357078, and A356265, which is a refinement of the number of reducible permutations.
LINKS
EXAMPLE
Triangle T(n, k) starts: [Row sums]
[0] 1; [1]
[1] 0, 1; [1]
[2] 0, 1, 1; [2]
[3] 0, 3, 2, 1; [6]
[4] 0, 9, 12, 2, 1; [24]
[5] 0, 49, 37, 31, 2, 1; [120]
[6] 0, 329, 149, 176, 63, 2, 1; [720]
[7] 0, 2561, 794, 853, 702, 127, 2, 1; [5040]
[8] 0, 22369, 5599, 3836, 5709, 2549, 255, 2, 1; [40320]
[9] 0, 216225, 47275, 18422, 37609, 33949, 8886, 511, 2, 1; [362880]
PROG
(SageMath)
def A357079_triangle(dim):
T = A357078_triangle(dim)
return [[0^n] + [T[n][k+1] + A356265_row(n)[k]
for k in range(n)] for n in range(dim)]
A357079_triangle(9)
CROSSREFS
Sequence in context: A035327 A004444 A204533 * A259790 A246654 A370506
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Sep 11 2022
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 May 16 05:56 EDT 2024. Contains 372549 sequences. (Running on oeis4.)