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!)
A321164 Sum of distinct products b_1*b_2*...*b_n where 1<=b_i<=n. 1
1, 7, 90, 1441, 38325, 916714, 37830100, 1194352181, 45241845825, 1951734678972, 147430334155104, 5664495439368403, 528359397843879784, 30798685780200874044, 1774211038440007650672, 99969666291681633988821, 13249072759407029981640765, 847264606120975715873578180 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(2) = 1 + 2 + 4 = 7.
a(3) = 1 + 2 + 3 + 4 + 6 + 8 + 9 + 12 + 18 + 27 = 90.
MAPLE
a:= proc(m) option remember; local b; b:=
proc(n) option remember; `if`(n=0, {1},
map(x-> seq(x*i, i=1..m), b(n-1)))
end; forget(b); add(i, i=b(m))
end:
seq(a(n), n=1..12); # Alois P. Heinz, Jan 11 2019
MATHEMATICA
a[m_] := a[m] = Module[{b}, b[n_] := b[n] = If[n==0, {1}, Map[Table[# i, {i, 1, m}]&, b[n-1]]] // Flatten // Union; b[m] // Total];
Array[a, 12] (* Jean-François Alcover, Nov 26 2020, after Alois P. Heinz *)
CROSSREFS
Main diagonal of A321163.
Cf. A110713.
Sequence in context: A244849 A355591 A360914 * A243699 A007820 A306137
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 10 2019
EXTENSIONS
a(15)-a(18) from Alois P. Heinz, Jan 11 2019
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 April 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)