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 A159053 #5 Jul 18 2024 12:51:22 %S A159053 1,3,87,123,143,183,267,303,327,447,483,543,687,723,807,843,1023,1047, %T A159053 1167,1203,1227,1263,1347,1383,1527,1563,1623,1707,1763,1803,1923, %U A159053 1983,2103,2127,2283,2307,2427,2463,2487,2643,2691,2703,2787,2823,3027,3063 %N A159053 Indices n such that Fibonacci(n-3) is a multiple of n. %e A159053 Fibonacci(84)/87=160500643816367088/87=1844834986395024, so 87 is in the sequence. Fibonacci(120)/123=5358359254990966640871840/123 = 43563896382040379194080 so 123 is in the sequence. %t A159053 lst={};Do[If[Mod[(Fibonacci[n-3]),n]==0,AppendTo[lst,n]],{n,3*7!}];lst %t A159053 Select[Range[3100],Mod[Fibonacci[#-3],#]==0&] (* _Harvey P. Dale_, Jul 18 2024 *) %Y A159053 Cf. A123976, A159051, A159052. %K A159053 nonn %O A159053 1,2 %A A159053 _Vladimir Joseph Stephan Orlovsky_, Apr 03 2009 %E A159053 Comments edited by _R. J. Mathar_, Apr 05 2009