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 A280532 #41 Feb 06 2017 02:11:13 %S A280532 1,1,6,13,37,31,605,1411,7174,15567,608953,78903,334535,611552,105928, %T A280532 2557047,2979162,3263358,6242520,7825254,37404834,267494881,639174488 %N A280532 a(1) = a(2) = 1, a(n) = A014777(a(n-1) + a(n-2)), n >= 3. %H A280532 Dave Andersen, <a href="http://www.angio.net/pi/whynotpi.html">Probability of Finding Strings In Pi</a> %H A280532 Anders Hellström, <a href="/A280532/a280532.spyx.txt">Sage program</a> %H A280532 James Taylor, <a href="http://www.subidiom.com/pi/">Irrational Numbers Search Engine</a> (Search 2*10^9 decimal digits of Pi) %t A280532 Module[{a = {1, 1}, s = First@ RealDigits[N[Pi, 10^7]]}, Do[AppendTo[a, -1 + SequencePosition[s, IntegerDigits[ a[[n - 1]] + a[[n - 2]] ]][[1, 1]]], {n, 3, 20}]; a] (* _Michael De Vlieger_, Jan 14 2017 *) %Y A280532 Cf. A014777, A032445, A038100, A176341, A232013. %K A280532 nonn,base,more %O A280532 1,3 %A A280532 _Anders Hellström_, Jan 13 2017