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

A351048
Numbers k such that tau(k) | k'.
3
1, 8, 9, 15, 20, 35, 39, 44, 51, 55, 68, 72, 87, 91, 92, 95, 108, 111, 112, 115, 116, 119, 123, 128, 143, 155, 159, 160, 164, 183, 187, 188, 189, 196, 203, 212, 215, 219, 235, 236, 247, 259, 267, 272, 284, 287, 291, 295, 299, 303, 319, 323, 327, 332, 335, 339, 352, 355, 356
OFFSET
1,2
COMMENTS
Numbers k such that A000005(k) divides A003415(k).
LINKS
EXAMPLE
39 is in the sequence since tau(39) = 4 | 16 = 39'.
MAPLE
filter:= proc(n) local F, t;
F:= ifactors(n)[2];
(n * add(t[2]/t[1], t=F)) mod mul(t[2]+1, t=F) = 0
end proc:
select(filter, [$1..1000]); # Robert Israel, May 05 2024
MATHEMATICA
q[1] = True; q[n_] := Module[{f = FactorInteger[n]}, Divisible[n * Plus @@ ((Last[#]/First[#]) & /@ f), Times @@ (1 + Last[#] & /@ f)]]; Select[Range[350], q] (* Amiram Eldar, Feb 03 2022 *)
CROSSREFS
Cf. A000005 (tau), A003415 (arithmetic derivative), A351163. Contains A080774.
Sequence in context: A256351 A050688 A134334 * A292188 A301659 A265221
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Feb 03 2022
STATUS
approved