The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A371598 a(n) = (Product_{i=1..n} Fibonacci(i)) mod Fibonacci(n + 1). 0
0, 1, 2, 1, 6, 6, 12, 2, 15, 16, 0, 49, 299, 220, 882, 252, 2176, 166, 495, 5720, 5251, 6065, 28224, 41650, 106947, 113288, 256737, 173841, 26840, 25379, 444150, 347278, 1834953, 8709610, 4046544, 2653673, 31127545, 47532000, 50717205, 147239197, 97769672, 37543458 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) = A003266(n) mod A000045(n+1).
EXAMPLE
a(1) = 0 since A000045(1) = A000045(2) = 1 and 1 mod 1 = 0.
a(2) = (1 * 1) mod 2 = 1.
a(3) = (1 * 1 * 2) mod 3 = 2.
a(4) = (1 * 1 * 2 * 3) mod 5 = 1.
MATHEMATICA
a[n_] := Mod[Fibonorial[n], Fibonacci[n + 1]]; Array[a, 50] (* Amiram Eldar, Mar 29 2024 *)
PROG
(Python)
from sympy import fibonacci
def a(n):
a_n = 1
mod = fibonacci(n + 1)
for i in range(1, n + 1):
a_n = (a_n * fibonacci(i)) % mod
return a_n
(PARI) a(n) = my(f=fibonacci(n+1)); lift(prod(k=1, n, Mod(fibonacci(k), f))); \\ Michel Marcus, Apr 03 2024
CROSSREFS
Sequence in context: A111646 A363629 A342965 * A117753 A145883 A062820
KEYWORD
nonn
AUTHOR
Adnan Baysal, Mar 29 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 16 22:16 EDT 2024. Contains 373432 sequences. (Running on oeis4.)