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.

A238103 Product of composite numbers in range n+1 to 2n, exclusive of endpoints.

Original entry on oeis.org

1, 1, 1, 6, 72, 720, 1080, 25200, 40320, 725760, 25401600, 558835200, 23950080000, 1120863744000, 1961511552000, 58845346560000, 3452260331520000, 4108189794508800000, 7394741630115840000, 521857480753889280000, 948831783188889600000, 39850934893933363200000, 3287702128749502464000000
Offset: 1

Views

Author

N. J. A. Sloane, Feb 26 2014

Keywords

Examples

			For n=6, the range (7,12) contains three composite numbers 8,9,10 whose product is a(6) = 720.
		

Crossrefs

Cf. A157625 (inclusive version).

Programs

  • Mathematica
    Table[Times@@Select[Range[n+2,2n-1],CompositeQ],{n,30}] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Sep 14 2018 *)