A360110 Nonmultiples of 4 whose arithmetic derivative is a multiple of 4.
1, 15, 35, 39, 51, 55, 81, 87, 91, 95, 111, 115, 119, 123, 143, 155, 159, 183, 187, 189, 203, 215, 219, 225, 235, 247, 259, 267, 287, 291, 295, 297, 299, 303, 319, 323, 327, 335, 339, 355, 371, 391, 395, 403, 407, 411, 415, 427, 441, 447, 451, 471, 511, 513, 515, 519, 525, 527, 535, 543, 551, 559, 579
Offset: 1
Keywords
Examples
189 = 3^3 * 7 has arithmetic derivative 189' = A003415(189) = 216 = 2^3 * 3^3. Because 189 is not a multiple of 4, but 216 is, 189 is included in this sequence.
Links
- Antti Karttunen, Table of n, a(n) for n = 1..20000
Crossrefs
Programs
-
Mathematica
d[0] = d[1] = 0; d[n_] := n * Plus @@ ((Last[#]/First[#]) & /@ FactorInteger[n]); Select[Range[600], ! Divisible[#, 4] && Divisible[d[#], 4] &] (* Amiram Eldar, Jan 31 2023 *)
-
PARI
isA360110(n) = A360109(n);
Comments