editing
approved
Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
editing
approved
Alois P. Heinz, <a href="/A181844/b181844_2.txt">Table of n, a(n) for n = 0..188</a> (terms n=1..80 from Vincenzo Librandi)
editing
approved
# second Maple program:
b:= proc(n, i, r) option remember; `if`(n=0, r, `if`(i<1, 0,
b(n, i-1, r)+b(n-i, min(i, n-i), ilcm(i, r))))
end:
a:= n-> b(n$2, 1):
seq(a(n), n=0..42); # Alois P. Heinz, Mar 18 2019
Row sums Sum over all partitions of n of the LCM of A181842the parts.
Old name was: Row sums of A181842.
New name from Alois P. Heinz, Mar 18 2019
Vincenzo Librandi and Alois P. Heinz, <a href="/A181844/b181844_2.txt">Table of n, a(n) for n = 0..100188</a> (terms n=1..80 from Vincenzo Librandi)
approved
editing
editing
approved
editing
approved