OFFSET
0,3
COMMENTS
Product of numbers in n-th row of A070861.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..10
FORMULA
a(n) = n!^(A263292(n)). - David A. Corneth, Mar 06 2017
EXAMPLE
Rows with subsets of the sets of numbers from 1 to n:
{},
{}, {1};
{}, {1}, {2}, {1, 2};
{}, {1}, {2}, {3}, {1, 2}, {1, 3}, {2, 3}, {1, 2, 3};
...
Rows with the products of elements of these subsets:
1;
1, 1;
1, 1, 2, 2;
1, 1, 2, 3, 2, 3, 6, 6;
...
Rows with the different products of elements of these subsets:
1;
1;
1, 2;
1, 2, 3, 6;
...
a(0) = 1, a(1) = (1), a(2) = (1*2) = 2, a(3) = (1*2*3*6) = 36, ... .
MAPLE
b:= proc(n) option remember; `if`(n=0, {1},
map(x-> [x, x*n][], b(n-1)))
end:
a:= n-> mul(i, i=b(n)):
seq(a(n), n=0..7); # Alois P. Heinz, Aug 01 2022
MATHEMATICA
Table[Times @@ Union@ Map[Times @@ # &, Subsets@ Range@ n], {n, 7}] (* Michael De Vlieger, Mar 05 2017 *)
PROG
(PARI) a(n)=my(v=[2..n]); factorback(Set(vector(2^(n-1), i, factorback(vecextract(v, i-1))))) \\ Charles R Greathouse IV, Mar 06 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Mar 04 2017
EXTENSIONS
a(0)=1 prepended by Alois P. Heinz, Aug 01 2022
STATUS
approved