A114426 Product of the first n 4-almost primes (A014613).
16, 384, 13824, 552960, 29859840, 1672151040, 100329062400, 8126654054400, 682638940569600, 60072226770124800, 5406500409311232000, 540650040931123200000, 56227604256836812800000
Offset: 1
Examples
a(5) = 29859840 = 16 * 24 * 36 * 40 * 54 = the product of the first 5 values of the 4-almost primes = 2^13 * 3^6 * 5, which has 4*5 = 20 prime factors (with multiplicity).
Programs
-
Mathematica
FoldList[Times,Select[Range[200],PrimeOmega[#]==4&]] (* Harvey P. Dale, Dec 02 2018 *)
Formula
a(n) = Prod[from i = 1 to n] A014613(i).
Comments