login

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”).

A378913
a(n) = sum of all positive m such that sigma(m) divides n, where sigma is the sum-of-divisors function (A000203).
0
1, 1, 3, 4, 1, 8, 5, 11, 3, 1, 1, 28, 10, 18, 11, 11, 1, 35, 1, 23, 7, 1, 1, 87, 1, 10, 3, 33, 1, 45, 42, 63, 3, 1, 5, 77, 1, 38, 30, 57, 1, 112, 1, 47, 11, 1, 1, 202, 5, 1, 3, 13, 1, 122, 1, 107, 52, 1, 1, 205, 1, 103, 39, 63, 10, 8, 1, 71, 3, 18, 1, 389, 1, 74, 11
OFFSET
1,3
MATHEMATICA
With[{nmax = 100}, Table[Total[PositionIndex[Divisible[n, #[[;; n]]]][True]], {n, nmax}] & [DivisorSigma[1, Range[nmax]]]]
PROG
(PARI) a(n) = vecsum(select(x->(!(n % sigma(x))), [1..n])); \\ Michel Marcus, Dec 11 2024
CROSSREFS
Row sums of A378912.
Cf. A378915 (positions of ones).
Cf. A000203.
Sequence in context: A324559 A174607 A326503 * A105578 A378227 A198739
KEYWORD
nonn,new
AUTHOR
Paolo Xausa, Dec 11 2024
STATUS
approved