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

A353977
Sum of the nontrivial divisors of n whose arithmetic derivative divides n.
0
0, 2, 3, 6, 5, 5, 7, 6, 3, 7, 11, 9, 13, 9, 8, 6, 17, 14, 19, 11, 10, 13, 23, 17, 5, 15, 30, 13, 29, 16, 31, 22, 14, 19, 12, 18, 37, 21, 16, 11, 41, 12, 43, 17, 8, 25, 47, 29, 7, 32, 20, 19, 53, 41, 16, 13, 22, 31, 59, 20, 61, 33, 10, 22, 18, 16, 67, 23, 26, 24, 71, 26, 73
OFFSET
1,2
FORMULA
a(n) = Sum_{d|n, d'|n, d>1} d, where d' is the arithmetic derivative of d.
EXAMPLE
The sum of the nontrivial divisors of 6 whose arithmetic derivative divides 6 is 2 + 3 = 5.
MATHEMATICA
d[1] = 0; d[n_] := n*Plus @@ ((Last[#]/First[#]) & /@ FactorInteger[n]); a[n_] := DivisorSum[n, # &, # > 1 && Divisible[n, d[#]] &]; Array[a, 100] (* Amiram Eldar, May 13 2022 *)
PROG
(PARI) ad(n) = vecsum([n/f[1]*f[2]|f<-factor(n+!n)~]); \\ A003415
a(n) = sumdiv(n, d, if ((d>1) && !(n % ad(d)), d)); \\ Michel Marcus, May 13 2022
CROSSREFS
Sequence in context: A269374 A137761 A100769 * A023889 A327669 A253413
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, May 12 2022
STATUS
approved