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.

A265125 Partial products of A265111.

Original entry on oeis.org

1, 2, 6, 12, 60, 120, 360, 720, 5040, 10080, 30240, 60480, 302400, 907200, 1814400, 19958400, 39916800, 119750400, 239500800, 3113510400, 6227020800, 43589145600, 87178291200, 435891456000, 1307674368000, 2615348736000, 44460928512000, 88921857024000
Offset: 1

Views

Author

Reinhard Zumkeller, Dec 02 2015

Keywords

Comments

a(n) >= A175943(n), a(n) > A175943(n) for n > 10.

Crossrefs

Programs

  • Haskell
    a265125 n = a265125_list !! (n-1)
    a265125_list  = scanl1 (*) a265111_list