A122123 Product of the first n 5-almost primes (A014614).
32, 1536, 110592, 8847360, 955514880, 107017666560, 12842119987200, 2080423437926400, 349511137571635200, 61513960212607795200, 11072512838269403136000, 2214502567653880627200000, 460616534072007170457600000, 111929817779497742421196800000
Offset: 1
Examples
a(10) = 32 * 48 * 72 * 80 * 108 * 112 * 120 * 162 * 168 * 176 = 2^33 * 3^12 * 5^2 * 7^2 * 11 which has 50 prime factors with multiplicity.
Programs
-
Mathematica
Rest[FoldList[Times,1,Select[Range[200],PrimeOmega[#]==5&]]] (* Harvey P. Dale, Feb 07 2012 *)
Formula
a(n) = Prod[i=1..n] A014614(i).
Extensions
More terms from Harvey P. Dale, Feb 07 2012
Comments