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.

A374656 a(n) = Product_{k=0..n} L(k)+2, where L=A000032 (Lucas numbers).

Original entry on oeis.org

4, 12, 60, 360, 3240, 42120, 842400, 26114400, 1279605600, 99809236800, 12476154600000, 2507707074600000, 812497092170400000, 424935979205119200000, 359070902428325724000000, 490490852717092938984000000, 1083494293652058302215656000000
Offset: 0

Views

Author

Clark Kimberling, Jul 28 2024

Keywords

Comments

a(n+1)/a(n) is an integer for n>=0, so (a(n)) is a divisibility sequence.

Crossrefs

Programs

  • Mathematica
    w[n_] := Product[LucasL[k] + 2, {k, 0, n}]
    Table[w[n], {n, 0, 20}]