A385380 Partial products of the sequence nonprime powers of primes (A025475).
1, 4, 32, 288, 4608, 115200, 3110400, 99532800, 4877107200, 312134860800, 25282923724800, 3059233770700800, 382404221337600000, 48947740331212800000, 8272168115974963200000, 2010136852181916057600000, 514595034158570510745600000, 148717964871826877605478400000
Offset: 1
Links
Programs
-
Mathematica
FoldList[Times, 1, Select[Range[250], !PrimeQ[#] && PrimePowerQ[#] &]] (* Amiram Eldar, Jun 27 2025 *)
-
PARI
list(lim) = {my(p = 1); print1(p, ", "); for(k = 2, lim, if(isprimepower(k) > 1, p *= k; print1(p, ", ")));}
Formula
a(n) = Product_{k=1..n} A025475(k).
Comments