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 A022371 #23 Jun 26 2021 16:44:51 %S A022371 2,18,20,38,58,96,154,250,404,654,1058,1712,2770,4482,7252,11734, %T A022371 18986,30720,49706,80426,130132,210558,340690,551248,891938,1443186, %U A022371 2335124,3778310,6113434,9891744,16005178 %N A022371 Fibonacci sequence beginning 2, 18. %H A022371 G. C. Greubel, <a href="/A022371/b022371.txt">Table of n, a(n) for n = 0..1000</a> %H A022371 Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a> %H A022371 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (1, 1). %F A022371 G.f.: (2+16*x)/(1-x-x^2). - _Philippe Deléham_, Nov 19 2008 %F A022371 a(n) = 2*(Fibonacci(n+2) + 7*Fibonacci(n)). - _G. C. Greubel_, Aug 27 2017 %F A022371 a(n) = 2 * A022099(n). - _Alois P. Heinz_, Aug 27 2017 %t A022371 a={};b=2;c=18;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 A022371 Transpose[NestList[{Last[#],Total[#]}&,{2,18},30]][[1]] (* _Harvey P. Dale_, Apr 13 2011 *) %t A022371 LinearRecurrence[{1,1},{2,18},40] (* _Harvey P. Dale_, Jun 26 2021 *) %o A022371 (PARI) for(n=0,50, print1(2*(fibonacci(n+2) + 7*fibonacci(n)), ", ")) \\ _G. C. Greubel_, Aug 27 2017 %Y A022371 Cf. A022099. %K A022371 nonn %O A022371 0,1 %A A022371 _N. J. A. Sloane_