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.

A374982 a(n) = (1/3)*Product_{k=0..n} (F(k)+3), where F=A000045 (Fibonacci numbers).

This page as a plain text file.
%I A374982 #15 Aug 04 2024 20:46:41
%S A374982 1,4,16,80,480,3840,42240,675840,16220160,600145920,34808463360,
%T A374982 3202378629120,470749658480640,111096919401431040,
%U A374982 42216829372543795200,25878916405369346457600,25620127241315652993024000,40992203586105044788838400000
%N A374982 a(n) = (1/3)*Product_{k=0..n} (F(k)+3), where F=A000045 (Fibonacci numbers).
%C A374982 Trivially, a(n+1)/a(n) is an integer for n>=0, so (a(n)) is a divisibility sequence.
%t A374982 q[n_] := Fibonacci[n]
%t A374982 p[n_] := Product[q[k] + 3, {k, 0, n}]
%t A374982 Table[(1/3)*Simplify[p[n]], {n, 0, 20}]
%o A374982 (PARI) a(n) = prod(k=0, n, fibonacci(k)+3)/3; \\ _Michel Marcus_, Aug 04 2024
%Y A374982 Cf. A000045, A082480.
%K A374982 nonn
%O A374982 0,2
%A A374982 _Clark Kimberling_, Aug 03 2024