%I A084744
%S A084744 1,2,8,24,48,384,1152,2304,9216,46080,414720,829440,13271040,79626240,
%T A084744 318504960,637009920,1911029760,15288238080,107017666560,535088332800,
%U A084744 1070176665600,9631589990400,38526359961600,77052719923200
%N A084744 Product of all composite numbers from 1 to the n-th nonprime number divided
by product of all the prime divisors of each of those composite numbers
which exceed the previously stated value.
%C A084744 More precisely the denominator equals the product of the largest square-free
divisors of composite numbers up to n.
%F A084744 a(1)=1, a(n)=a(n-1)*n/(n's prime factors).
%e A084744 a(4) = (1*4*6*8*9)/((2)*(2*3)*(2)*(3)) = 24.
%p A084744 A084744 := proc(n) sort(convert(convert(A085056(n),set),list)) end: [From
Peter Luschny (peter(AT)luschny.de), Jun 29 2009]
%t A084744 PrimeFactors[ n_Integer ] := Flatten[ Table[ # [ [ 1 ] ], {1} ] & /@
FactorInteger[ n ] ]; a[ 1 ] := 1; a[ n_ ] := a[ n ] = a[ n - 1 ]*n
/ Times @@ PrimeFactors[ n ]; Union[ Table[ a[ n ], {n, 1, 63} ]
%Y A084744 Cf. A084056.
%Y A084744 Sequence in context: A138387 A007346 A062247 this_sequence A122547 A152132
A009059
%Y A084744 Adjacent sequences: A084741 A084742 A084743 this_sequence A084745 A084746
A084747
%K A084744 nonn
%O A084744 1,2
%A A084744 Amarnath Murthy and Meenakshi Srikanth (amarnath_murthy(AT)yahoo.com),
Jun 26 2003
%E A084744 Edited and extended by Robert G. Wilson v (rgwv(AT)rgwv.com), Jun 27
2003
|