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 A084338 #34 Feb 16 2025 08:32:49 %S A084338 1,2,3,3,5,6,8,11,14,19,25,33,44,58,77,102,135,179,237,314,416,551, %T A084338 730,967,1281,1697,2248,2978,3945,5226,6923,9171,12149,16094,21320, %U A084338 28243,37414,49563,65657,86977,115220,152634,202197,267854,354831 %N A084338 a(1) = 1, a(2) = 2, a(3) = 3, a(n+3) = a(n) + a(n+1). %C A084338 Also the number of maximal independent vertex sets (and minimal vertex covers) in the n-pan graph. - _Eric W. Weisstein_, Aug 07 2017 %H A084338 Vincenzo Librandi, <a href="/A084338/b084338.txt">Table of n, a(n) for n = 1..1000</a> %H A084338 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/MaximalIndependentVertexSet.html">Maximal Independent Vertex Set</a> %H A084338 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/MinimalVertexCover.html">Minimal Vertex Cover</a> %H A084338 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/PanGraph.html">Pan Graph</a> %H A084338 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (0, 1, 1). %F A084338 From _Wolfdieter Lang_, Jun 15 2010: (Start) %F A084338 a(n) = p(n-1)+ 2*p(n) = p(n+2) + p(n), with p(n) = A000931(n+3) (Padovan); a(0)=2. %F A084338 O.g.f.: (2 + x)/(1 - x^2 - x^3). (End) %p A084338 G(x):=(-1-x^2)/(-1+x^2+x^3): f[0]:=G(x): for n from 1 to 60 do f[n]:=diff(f[n-1],x) od: x:=0: seq(f[n+2]/(n+2)!, n=1..50); # _Zerinvary Lajos_, Mar 27 2009 %t A084338 Join[{a=1,b=2,c=3},Table[d=a+b;a=b;b=c;c=d,{n,100}]] (* _Vladimir Joseph Stephan Orlovsky_, Feb 26 2011 *) %t A084338 LinearRecurrence[{0, 1, 1}, {1, 2, 3}, 50] (* _Harvey P. Dale_, Jul 14 2014 *) %t A084338 Table[RootSum[-1 - # + #^3 &, 12 #^n + 4 #^(n + 1) + 5 #^(n + 2) &]/23, {n, 20}] (* _Eric W. Weisstein_, Aug 07 2017 *) %t A084338 CoefficientList[Series[(-1 - 2 x - 2 x^2)/(-1 + x^2 + x^3), {x, 0, 20}], x] (* _Eric W. Weisstein_, Aug 07 2017 *) %o A084338 (Haskell) %o A084338 a084338_list = [1,2,3] ++ zipWith (+) a084338_list (tail a084338_list) %o A084338 a084338 n = a084338_list !! (n - 1) %o A084338 -- _Jack Willis_, Dec 22 2013 %K A084338 nonn,easy %O A084338 1,2 %A A084338 _Amarnath Murthy_ and Meenakshi Srikanth (menakan_s(AT)yahoo.com), Jun 18 2003 %E A084338 More terms from _Erich Friedman_, Aug 08 2005