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

A069147
Numbers k such that tau_3(k) (the number of ordered factorizations of k as k = r*s*t) divides k.
1
1, 3, 18, 36, 270, 360, 405, 540, 810, 1000, 1620, 1701, 1800, 1890, 2835, 2970, 3000, 3402, 3510, 3780, 4032, 4050, 4455, 4590, 5130, 5265, 5400, 5670, 5940, 6210, 6804, 6885, 7020, 7695, 7830, 8100, 8370, 8505, 8910, 9000, 9180, 9315, 9990, 10260
OFFSET
1,2
LINKS
FORMULA
k such that A007425(k) divides k.
MATHEMATICA
f[p_, e_] := (e + 1)*(e + 2)/2; tau3[1] = 1; tau3[n_] := Times @@ f @@@ FactorInteger[n]; Select[Range[10^4], Divisible[#, tau3[#]] &] (* Amiram Eldar, May 17 2020 *)
PROG
(PARI) for(n=1, 15000, if(n%sumdiv(n, d, numdiv(d))==0, print1(n, ", ")))
CROSSREFS
Sequence in context: A372707 A097989 A039700 * A337921 A365442 A094159
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Apr 08 2002
STATUS
approved