A291518 Number of permutations s_1,s_2,...,s_n of 1,2,...,n with s_n = n (if n>0) and such that for all j=1,2,...,n, Sum_{i=1..j} s_i divides Sum_{i=1..j} s_i^3.
1, 1, 1, 2, 6, 12, 30, 78, 186, 414, 912, 2064, 4338, 9798, 20106, 40974, 80196, 158322, 309414, 615558, 1212402, 2417136, 4776654, 9497508, 18726708, 37056150, 72946116, 144230640, 284660874, 564451830, 1118803818, 2224792026, 4420041210, 8791590168
Offset: 0
Keywords
Examples
1 divides 1^3, 1 + 2 divides 1^3 + 2^3, 1 + 2 + 3 divides 1^3 + 2^3 + 3^3, 1 + 2 + 3 + 4 divides 1^3 + 2^3 + 3^3 + 4^3, 1 + 2 + 3 + 4 + 5 divides 1^3 + 2^3 + 3^3 + 4^3 + 5^3. So [1, 2, 3, 4, 5] satisfies all the conditions. ------------------------------------------------------- a(1) = 1: [[1]]; a(2) = 1: [[1, 2]]; a(3) = 2: [[1, 2, 3], [2, 1, 3]]; a(4) = 6: [[1, 2, 3, 4], [1, 3, 2, 4], [2, 1, 3, 4], [2, 3, 1, 4], [3, 1, 2, 4], [3, 2, 1, 4]]; a(5) = 12: [[1, 2, 3, 4, 5], [1, 3, 2, 4, 5], [2, 1, 3, 4, 5], [2, 3, 1, 4, 5], [2, 3, 4, 1, 5], [2, 4, 3, 1, 5], [3, 1, 2, 4, 5], [3, 2, 1, 4, 5], [3, 2, 4, 1, 5], [3, 4, 2, 1, 5], [4, 2, 3, 1, 5], [4, 3, 2, 1, 5]].