cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A114426 Product of the first n 4-almost primes (A014613).

Original entry on oeis.org

16, 384, 13824, 552960, 29859840, 1672151040, 100329062400, 8126654054400, 682638940569600, 60072226770124800, 5406500409311232000, 540650040931123200000, 56227604256836812800000
Offset: 1

Views

Author

Jonathan Vos Post, Feb 13 2006

Keywords

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.

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

Crossrefs

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