|
Search: id:A085056
|
|
|
| A085056 |
|
(Product of all composite numbers from 1 to n)/ ( product of the prime divisors of all composite numbers up to n). More precisely, denominator = product of the largest square-free divisors of composite numbers up to n. |
|
+0 3
|
|
| 1, 1, 1, 2, 2, 2, 2, 8, 24, 24, 24, 48, 48, 48, 48, 384, 384, 1152, 1152, 2304, 2304, 2304, 2304, 9216, 46080, 46080, 414720, 829440, 829440, 829440, 829440, 13271040, 13271040, 13271040, 13271040, 79626240, 79626240, 79626240, 79626240
(list; graph; listen)
|
|
|
OFFSET
|
1,4
|
|
|
FORMULA
|
a(1)=1, a(n)=a(n-1)*n/(n's prime factors).
a(1) = 1, a(n+1) = a(n)*{(n)/(the largest squarefree divisor of n)}. - Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Nov 28 2004
|
|
EXAMPLE
|
a(9) = (4*6*8*9)/((2)*(2*3)*(2)*(3)) = 24.
|
|
MAPLE
|
Contribution from Peter Luschny (peter(AT)luschny.de), Jun 29 2009: (Start)
A085056 := proc(n) local S, i;
S := A003557(n); for i from 2 to n do
S[i] := S[i] * S[i-1]; od; S end: (End)
|
|
MATHEMATICA
|
PrimeFactors[ n_Integer ] := Flatten[ Table[ # [ [ 1 ] ], {1} ] & /@ FactorInteger[ n ] ]; a[ 1 ] := 1; a[ n_ ] := a[ n ] = a[ n - 1 ]*n/Times @@ PrimeFactors[ n ]; Table[ a[ n ], {n, 1, 40} ]
|
|
CROSSREFS
|
Cf. A084744.
Cf. A003557. [From Peter Luschny (peter(AT)luschny.de), Jun 29 2009]
Sequence in context: A100943 A152660 A058787 this_sequence A156538 A165466 A112727
Adjacent sequences: A085053 A085054 A085055 this_sequence A085057 A085058 A085059
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Amarnath Murthy and Meenakshi Srikanth (amarnath_murthy(AT)yahoo.com), Jun 26 2003
|
|
EXTENSIONS
|
More terms from Ray Chandler (rayjchandler(AT)sbcglobal.net) and Robert G. Wilson v (rgwv(AT)rgwv.com), Jun 27 2003
|
|
|
Search completed in 0.002 seconds
|