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.

A114779 Cumulative product of quadruple factorial A007662.

Original entry on oeis.org

1, 1, 2, 6, 24, 120, 1440, 30240, 967680, 43545600, 5225472000, 1207084032000, 463520268288000, 271159356948480000, 455547719673446400000, 1578472848668491776000000, 9698137182219213471744000000
Offset: 0

Views

Author

Jonathan Vos Post, Feb 18 2006

Keywords

Examples

			a(10) = 1!!!! * 2!!!! * 3!!!! * 4!!!! * 5!!!! * 6!!!! * 7!!!! * 8!!!! * 9!!!! * 10!!!! = 1 * 2 * 3 * 4 * 5 * 12 * 21 * 32 * 45 * 120 = 5225472000 = 2^13 * 3^6 * 5^3 * 7.
		

Crossrefs

Formula

a(n) = Product_{j=0..n} j!!!!.
a(n) = Product_{j=0..n} A007662(j).
a(n) = n!!!! * a(n-1) where a(0) = 1, a(1) = 1 and n >= 2.
a(n) = n*(n-4)!!!! * a(n-1) where a(0) = 1, a(1) = 1, a(2) = 2.