A071248 a(n) = Product_{k=1..n} lcm(n,k).
1, 4, 54, 768, 75000, 466560, 592950960, 5284823040, 1735643790720, 45360000000000, 1035338990313196800, 102980960177356800, 145077660657859734604800, 154452450072526199193600
Offset: 1
Keywords
Links
- T. D. Noe, Table of n, a(n) for n=1..100
Programs
-
Maple
A071248 := proc(n) mul( lcm(k,n),k=1..n) ; end: for n from 1 to 10 do printf("%d ",A071248(n)) ; od ; # R. J. Mathar, Apr 03 2007
-
Mathematica
Table[Product[LCM[k,n],{k,n}],{n,20}] (* Harvey P. Dale, Jun 12 2019 *)
-
PARI
a(n)=prod(k=1,n,lcm(n,k))
Formula
a(n) = n!*Product_{ d divides n } d^phi(d). - Vladeta Jovovic, Sep 10 2004
Extensions
More terms from Benoit Cloitre, Aug 13 2002
Comments