login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A374982
a(n) = (1/3)*Product_{k=0..n} (F(k)+3), where F=A000045 (Fibonacci numbers).
1
1, 4, 16, 80, 480, 3840, 42240, 675840, 16220160, 600145920, 34808463360, 3202378629120, 470749658480640, 111096919401431040, 42216829372543795200, 25878916405369346457600, 25620127241315652993024000, 40992203586105044788838400000
OFFSET
0,2
COMMENTS
Trivially, a(n+1)/a(n) is an integer for n>=0, so (a(n)) is a divisibility sequence.
MATHEMATICA
q[n_] := Fibonacci[n]
p[n_] := Product[q[k] + 3, {k, 0, n}]
Table[(1/3)*Simplify[p[n]], {n, 0, 20}]
PROG
(PARI) a(n) = prod(k=0, n, fibonacci(k)+3)/3; \\ Michel Marcus, Aug 04 2024
CROSSREFS
Sequence in context: A316944 A020080 A279361 * A003471 A002777 A280923
KEYWORD
nonn
AUTHOR
Clark Kimberling, Aug 03 2024
STATUS
approved