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

Numbers k such that tau_3(k) (the number of ordered factorizations of k as k = r*s*t) divides k.
1

%I #10 May 17 2020 02:15:24

%S 1,3,18,36,270,360,405,540,810,1000,1620,1701,1800,1890,2835,2970,

%T 3000,3402,3510,3780,4032,4050,4455,4590,5130,5265,5400,5670,5940,

%U 6210,6804,6885,7020,7695,7830,8100,8370,8505,8910,9000,9180,9315,9990,10260

%N Numbers k such that tau_3(k) (the number of ordered factorizations of k as k = r*s*t) divides k.

%H Amiram Eldar, <a href="/A069147/b069147.txt">Table of n, a(n) for n = 1..10000</a>

%F k such that A007425(k) divides k.

%t 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 *)

%o (PARI) for(n=1,15000,if(n%sumdiv(n,d,numdiv(d))==0,print1(n,",")))

%Y Cf. A007425, A033950.

%K easy,nonn

%O 1,2

%A _Benoit Cloitre_, Apr 08 2002