A283260 Product of the products of elements of all the nonempty subsets of the sets of numbers from 1 to n.
1, 4, 1296, 110075314176, 1848842588950364160000000000000000, 27204445973673520186989292010512474445356561349778469394841600000000000000000000000000000000
Offset: 1
Examples
Rows with nonempty 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, 2, 2; 1, 2, 3, 2, 3, 6, 6; ... a(1) = (1), a(2) = (1*2*2) = 4, a(3) = (1*2*3*2*3*6*6) = 1296, ...
Links
- N. J. A. Sloane, Table of n, a(n) for n = 1..8
Programs
-
PARI
a(n)=n!^2^(n-1) \\ Charles R Greathouse IV, Mar 06 2017
Formula
a(n) = (n!)^(2^(n-1)).
Comments