[go: up one dir, main page]

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

A280378
Partial products of A119619.
1
1, 1, 2, 6, 144, 1440, 1036800, 326592000, 1463132160000, 6636767477760000, 24083501823295488000000, 278164446059062886400000000, 133241214725404817086218240000000000, 1851999588197236795571599048704000000000000, 79730449087475946864047275218548293632000000000000
OFFSET
1,3
COMMENTS
A119619(n) = Product_{d|n} pxi(d), where pxi(m) is the product of totatives of m (A001783).
FORMULA
a(n) = Product_{i=1..n} A119619(i).
MATHEMATICA
FoldList[#1 #2 &, Table[Product[Times @@ Select[Range@ d, CoprimeQ[d, #] &], {d, Divisors@ n}], {n, 15}]] (* Michael De Vlieger, Jan 09 2017 *)
PROG
(Magma) [&*[&*[&*[h: h in [1..d] | GCD(h, d) eq 1]: d in Divisors(k)]: k in [1..n]]: n in [1..100]]
CROSSREFS
Sequence in context: A027731 A280821 A145143 * A280714 A164764 A333444
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Jan 08 2017
STATUS
approved