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 A249635 #8 Feb 16 2025 08:33:24 %S A249635 7,40,41,96,664,6095,8419,11471,13690,38835,49832,97152 %N A249635 Indices of prime Fibonacci 6-step numbers, A001592. %C A249635 This sequence is similar to A105758 but uses the indexing scheme defined by A001592, whose indices start with 0. %C A249635 a(13) > 3*10^5. %H A249635 Tony D. Noe and Jonathan Vos Post, <a href="http://www.cs.uwaterloo.ca/journals/JIS/VOL8/Noe/noe5.html">Primes in Fibonacci n-step and Lucas n-step Sequences,</a> J. of Integer Sequences, Vol. 8 (2005), Article 05.4.4 %H A249635 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/Fibonaccin-StepNumber.html">Fibonacci n-Step Number</a> %F A249635 a(n) = A105758 (n) + 4. %t A249635 a = {0, 0, 0, 0, 0, 1}; For[n = 6, n ≤ 1000, n++, sum = Plus @@ a; %t A249635 If[PrimeQ[sum], Print[n]]; a = RotateLeft[a]; a[[6]] = sum] %Y A249635 Cf. A001592, A105758. %K A249635 nonn,more %O A249635 1,1 %A A249635 _Robert Price_, Nov 02 2014