OFFSET
1,1
COMMENTS
FORMULA
a(n) = Prod[from i = 1 to n] A014613(i).
EXAMPLE
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).
MATHEMATICA
FoldList[Times, Select[Range[200], PrimeOmega[#]==4&]] (* Harvey P. Dale, Dec 02 2018 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Feb 13 2006
STATUS
approved