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.

A262206 Product of prime(n) consecutive numbers starting from n.

Original entry on oeis.org

2, 24, 2520, 604800, 54486432000, 53353114214400, 35905578804006912000, 80018147048929689600000, 203939450748460387344384000000, 1441310123089178548721360295690240000000, 9218619547278385997621820451234775040000000
Offset: 1

Views

Author

Altug Alkan, Sep 15 2015

Keywords

Comments

a(n) is always divisible by A039716(n).

Examples

			For n=1, a(1) = 1*2 = 2.
For n=2, a(2) = 2*3*4 = 24.
For n=3, a(3) = 3*4*5*6*7 = 2520.
For n=4, a(4) = 4*5*6*7*8*9*10 = 604800.
		

Crossrefs

Cf. A075069: product of prime(n) consecutive numbers starting from prime(n).

Programs

Formula

a(n) = (prime(n) + n - 1)! / (n-1)!.