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.

A152687 Partial products operator applied thrice to nonzero Fibonacci numbers.

Original entry on oeis.org

1, 1, 2, 24, 8640, 746496000, 201231433728000000, 3554168771933456302080000000000, 139840535301953855934724122328694784000000000000000, 674129921807822677705190163721626103970522196466131271680000000000000000000000
Offset: 1

Views

Author

Keywords

Comments

Partial products of A152686.

Crossrefs

Programs

  • Mathematica
    Nest[FoldList[Times,#]&,Fibonacci[Range[10]],3] (* Harvey P. Dale, Oct 06 2017 *)
  • PARI
    a(n) = prod(i=1, n, prod(j=1, i, prod(k=1, j, fibonacci(k)))); \\ Michel Marcus, Sep 15 2018

Extensions

Edited by R. J. Mathar, Dec 12 2008
One more term (a(10)) from Harvey P. Dale, Oct 06 2017