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.

A022373 Fibonacci sequence beginning 2, 22.

This page as a plain text file.
%I A022373 #21 Jun 29 2025 18:26:05
%S A022373 2,22,24,46,70,116,186,302,488,790,1278,2068,3346,5414,8760,14174,
%T A022373 22934,37108,60042,97150,157192,254342,411534,665876,1077410,1743286,
%U A022373 2820696,4563982,7384678,11948660,19333338,31281998,50615336,81897334,132512670,214410004,346922674,561332678
%N A022373 Fibonacci sequence beginning 2, 22.
%H A022373 G. C. Greubel, <a href="/A022373/b022373.txt">Table of n, a(n) for n = 0..1000</a>
%H A022373 Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a>
%H A022373 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (1, 1).
%F A022373 G.f.: (2+20x)/(1-x-x^2). - _Philippe Deléham_, Nov 19 2008
%t A022373 a={};b=2;c=22;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 A022373 LinearRecurrence[{1,1},{2,22},30] (* _Harvey P. Dale_, Jan 06 2013 *)
%o A022373 (PARI) x='x+O('x^50); Vec((2+20*x)/(1-x-x^2)) \\ _G. C. Greubel_, Oct 04 2017
%K A022373 nonn
%O A022373 0,1
%A A022373 _N. J. A. Sloane_
%E A022373 Terms a(30) onward added by _G. C. Greubel_, Oct 04 2017