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!)
A156564 Triangle: see Mathematica code. 0
1, 1, 1, 1, 1, 2, 1, 2, 3, 6, 1, 3, 40, 35, 24, 1, 4, 165, 8372, 1755, 120, 1, 5, 456, 159831, 17174080, 382075, 720, 1, 6, 1015, 1387064, 2572040925, 329455658840, 354205467, 5040, 1, 7, 1968, 7773755, 107605514016, 670559078523807, 57782732285824000, 1368556206875, 40320 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
EXAMPLE
{1},
{1, 1},
{1, 1, 2},
{1, 2, 3, 6},
{1, 3, 40, 35, 24},
{1, 4, 165, 8372, 1755, 120},
{1, 5, 456, 159831, 17174080, 382075, 720},
{1, 6, 1015, 1387064, 2572040925, 329455658840, 354205467, 5040},
MATHEMATICA
t[n_, m_] = If[m == 0, n!, Product[(m + 1)^n - Sum[(m + 1)^i, {i, 0, k - 1}], {k, 1, n}]];
a = Table[Table[t[n, m], {n, 0, 10}], {m, 0, 10}];
b = Table[Table[a[[m, n - m + 1]], {m, n, 1, -1}], {n, 1, Length[a]}];
Flatten[%]
CROSSREFS
Sequence in context: A033639 A156565 A156693 * A198123 A106576 A301336
KEYWORD
nonn,tabl,uned,obsc,less
AUTHOR
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 12 22:05 EDT 2024. Contains 372495 sequences. (Running on oeis4.)