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

A114426
Product of the first n 4-almost primes (A014613).
4
16, 384, 13824, 552960, 29859840, 1672151040, 100329062400, 8126654054400, 682638940569600, 60072226770124800, 5406500409311232000, 540650040931123200000, 56227604256836812800000
OFFSET
1,1
COMMENTS
4-almost prime analog of primorial (A002110). The semiprime analog of primorial is A112141. Equivalent for product of what A086046 is for sum. Bigomega(a(n)) = the number of not necessarily distinct prime factors of a(n) = A001222(a(n)) = A008586(n) = 4*n.
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 *)
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Feb 13 2006
STATUS
approved