login
A393206
a(n) is the number of partitions of A005101(n) into distinct abundant numbers.
2
1, 1, 1, 1, 2, 2, 1, 3, 3, 5, 3, 6, 7, 3, 9, 11, 7, 13, 6, 18, 20, 11, 25, 17, 31, 17, 36, 46, 54, 65, 77, 61, 94, 111, 132, 93, 157, 185, 219, 179, 261, 304, 357, 278, 421, 359, 489, 392, 577, 671, 552, 780, 679, 909, 1056, 1226, 1418, 1642, 1895, 1709, 2186, 2526
OFFSET
1,5
LINKS
Eric Weisstein's World of Mathematics, Abundant Number
Eric Weisstein's World of Mathematics, Partition
EXAMPLE
The a(10) = 5 partitions of A005101(10) = 54 are [54], [12, 42], [18, 36], [24, 30] and [12, 18, 24].
MAPLE
with(NumberTheory):
d := proc(i) option remember; sigma(i) > 2*i; end proc:
c := proc(i) option remember; `if`(i = 0, 0, c(i - 1) + `if`(d(i), i, 0)); end proc:
b := proc(n, i) option remember; `if`(n = 0, 1, `if`(i = 0 or c(i) < n, 0, b(n, i - 1) + `if`(i <= n and d(i), b(n - i, i - 1), 0))); end proc:
a := proc(n) option remember; local s, m, k, i;
s := proc(i, j, n) option remember; `if`(j >= n, i, s(i + 1, `if`(d(i + 1), j + 1, j), n)) end proc;
m := `if`(n = 1, 12, a(n - 1)[1]);
k := `if`(n = 1, 1, n - 1);
i := s(m, k, n);
[i, b(i, i)];
end proc:
A393206 := n -> a(n)[2]:
seq(A393206(n), n = 1 .. 62);
CROSSREFS
KEYWORD
nonn
AUTHOR
Felix Huber, Feb 13 2026
STATUS
approved