login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A175334 a(n) is the smallest positive divisor of Product_{k=1..n} d(k) that does not yet occur in the sequence, where d(k) is the number of positive divisors of k. 1

%I #12 Mar 25 2019 02:31:55

%S 1,2,4,3,6,8,12,16,9,18,24,27,32,36,48,5,10,15,20,30,40,45,54,60,64,

%T 72,80,81,90,96,108,120,128,135,144,160,162,180,192,216,240,243,256,

%U 270,288,320,324,25,50,75,100,150,200,225,300,360,384,400,405,432,450,480

%N a(n) is the smallest positive divisor of Product_{k=1..n} d(k) that does not yet occur in the sequence, where d(k) is the number of positive divisors of k.

%C This sequence is a permutation of the positive integers.

%p From _R. J. Mathar_, Aug 31 2010: (Start)

%p A066843 := proc(n) option remember; if n <= 2 then n; else procname(n-1) * numtheory[tau](n) ; end if; end proc:

%p A175334 := proc(n) option remember ; dvs := sort(convert(numtheory[divisors](A066843(n)),list)) ; for d in dvs do wrks := true; for i from 1 to n-1 do if procname(i) = d then wrks := false; break; end if; end do: if wrks then return d; end if; end do: end proc:

%p seq(A175334(n),n=1..90) ; (End)

%Y Cf. A066843.

%K nonn

%O 1,2

%A _Leroy Quet_, Apr 14 2010

%E More terms from _R. J. Mathar_, Aug 31 2010

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 11:08 EDT 2024. Contains 371711 sequences. (Running on oeis4.)