login
A309403
Total sum of the number of divisors of the element sum over all nonempty subsets of [n].
3
1, 5, 16, 40, 96, 217, 469, 1011, 2147, 4497, 9389, 19489, 40256, 82948, 170413, 349158, 714153, 1458199, 2972683, 6052561, 12308971, 25006177, 50755272, 102933086, 208594116, 422432018, 854956112, 1729360940, 3496259940, 7065053883, 14270420877, 28812580857
OFFSET
1,2
LINKS
MAPLE
b:= proc(n, s) option remember; `if`(n=0,
numtheory[tau](s), b(n-1, s)+b(n-1, s+n))
end:
a:= n-> b(n, 0):
seq(a(n), n=1..30);
MATHEMATICA
b[n_, s_] := b[n, s] = If[n == 0,
If[s == 0, 0, DivisorSigma[0, s]], b[n-1, s] + b[n-1, s+n]];
a[n_] := b[n, 0];
Table[a[n], {n, 1, 30}] (* Jean-François Alcover, Mar 24 2022, after Alois P. Heinz *)
CROSSREFS
Row sums of A309402.
Sequence in context: A001753 A202087 A361074 * A073459 A299048 A081997
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jul 28 2019
STATUS
approved