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.

A122123 Product of the first n 5-almost primes (A014614).

Original entry on oeis.org

32, 1536, 110592, 8847360, 955514880, 107017666560, 12842119987200, 2080423437926400, 349511137571635200, 61513960212607795200, 11072512838269403136000, 2214502567653880627200000, 460616534072007170457600000, 111929817779497742421196800000
Offset: 1

Views

Author

Jonathan Vos Post, Oct 19 2006

Keywords

Comments

5-almost prime analog of primorial (A002110). The semiprime analog of primorial is A112141. Equivalent for product of what A086047 is for sum. Bigomega(a(n)) = the number of not necessarily distinct prime factors of a(n) = A001222(a(n)) = A008587(n) = 5*n.

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.
		

Crossrefs

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