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.
%I A002752 #21 Apr 11 2022 12:54:32 %S A002752 0,1,1,2,3,5,1,5,3,4,0,5,1,9,2,2,1,13,0,1,3,12,1,1,18,15,1,26,0,29,0, %T A002752 29,12,2,22,17,1,1,29,26,0,13,1,13,33,2,1,1,21,49,37,18,1,23,47,13,39, %U A002752 30,0,41,0,1,62,34,8,49,1,5,3,54,0,1,1,39,7,2,74 %N A002752 a(n) = Fibonacci(n-1) mod n. %H A002752 T. D. Noe, <a href="/A002752/b002752.txt">Table of n, a(n) for n=1..5000</a> %t A002752 Table[Mod[Fibonacci[n],n+1],{n,6!}] (* _Vladimir Joseph Stephan Orlovsky_, Feb 18 2010 *) %o A002752 (Sage) %o A002752 def A002752(n): return mod(fibonacci(n - 1), n) %o A002752 # Assuming offset 0 this prepends a(0) = 1. %o A002752 print([A002752(n) for n in range(79)]) # _Peter Luschny_, Apr 11 2022 %o A002752 (PARI) a(n) = fibonacci(n-1) % n; \\ _Michel Marcus_, Apr 11 2022 %Y A002752 Column 0 of A352747. %Y A002752 Cf. A000045, A002708, %K A002752 nonn %O A002752 1,4 %A A002752 John C. Hallyburton, Jr. (hallyb(AT)evms.ENET.dec.com)