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 A022378 #15 Jul 30 2015 17:54:56 %S A022378 2,32,34,66,100,166,266,432,698,1130,1828,2958,4786,7744,12530,20274, %T A022378 32804,53078,85882,138960,224842,363802,588644,952446,1541090,2493536, %U A022378 4034626,6528162,10562788,17090950 %N A022378 Fibonacci sequence beginning 2, 32. %H A022378 Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a> %H A022378 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (1, 1). %F A022378 G.f.: (2+30x)/(1-x-x^2). - _Philippe Deléham_, Nov 19 2008 %t A022378 a={};b=2;c=32;AppendTo[a, b];AppendTo[a, c];Do[b=b+c;AppendTo[a, b];c=b+c;AppendTo[a, c], {n, 4!}];a (* _Vladimir Joseph Stephan Orlovsky_, Sep 18 2008 *) %t A022378 LinearRecurrence[{1,1},{2,32},40] (* _Harvey P. Dale_, Mar 18 2013 *) %K A022378 nonn %O A022378 0,1 %A A022378 _N. J. A. Sloane_