cp's OEIS Frontend

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.

A022118 Fibonacci sequence beginning 2, 17.

This page as a plain text file.
%I A022118 #19 Jul 30 2015 17:25:50
%S A022118 2,17,19,36,55,91,146,237,383,620,1003,1623,2626,4249,6875,11124,
%T A022118 17999,29123,47122,76245,123367,199612,322979,522591,845570,1368161,
%U A022118 2213731,3581892,5795623,9377515,15173138,24550653,39723791,64274444,103998235,168272679
%N A022118 Fibonacci sequence beginning 2, 17.
%H A022118 Ivan Panchenko, <a href="/A022118/b022118.txt">Table of n, a(n) for n = 0..1000</a>
%H A022118 Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a>
%H A022118 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (1, 1).
%F A022118 G.f.: (2+15*x)/(1-x-x^2). - _Philippe Deléham_, Nov 19 2008
%t A022118 a={};b=2;c=17;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 17 2008 *)
%t A022118 CoefficientList[Series[(2 + 15 x)/(1 - x - x^2), {x, 0, 40}], x] (* _Wesley Ivan Hurt_, Jun 15 2014 *)
%K A022118 nonn,easy
%O A022118 0,1
%A A022118 _N. J. A. Sloane_, Jun 14 1998
%E A022118 More terms from _Wesley Ivan Hurt_, Jun 15 2014