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 A020873 #44 Feb 16 2025 08:32:34 %S A020873 2,3,7,15,29,53,95,171,313,585,1115,2159,4229,8349,16567,32979,65777, %T A020873 131345,262451,524631,1048957,2097573,4194767,8389115,16777769, %U A020873 33555033,67109515,134218431,268436213,536871725,1073742695,2147484579,4294968289,8589935649 %N A020873 a(n) is number of cycles in Moebius ladder M_n. %C A020873 For n >= 2, a(n+1) is the number of connected induced (non-null) subgraphs of the n-wheel graph. - _Giovanni Resta_, May 04 2017 %H A020873 Colin Barker, <a href="/A020873/b020873.txt">Table of n, a(n) for n = 0..1000</a> %H A020873 J. P. McSorley, <a href="http://dx.doi.org/10.1016/S0012-365X(97)00086-1">Counting structures in the Moebius ladder</a>, Discrete Math., 184 (1998), 137-164. %H A020873 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/ConnectedGraph.html">Connected Graph</a> %H A020873 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/GraphCycle.html">Graph Cycle</a> %H A020873 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/MoebiusLadder.html">Möbius Ladder</a> %H A020873 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/Vertex-InducedSubgraph.html">Vertex-Induced Subgraph</a> %H A020873 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/WheelGraph.html">Wheel Graph</a> %H A020873 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (5,-9,7,-2). %F A020873 a(n) = 2^n + n^2 - n + 1. %F A020873 From _R. J. Mathar_, May 31 2010: (Start) %F A020873 a(n) = 5*a(n-1) - 9*a(n-2) + 7*a(n-3) - 2*a(n-4). %F A020873 G.f.: (2 - 7*x + 10*x^2 - 7*x^3)/((2*x - 1)*(x - 1)^3). (End) %F A020873 E.g.f.: exp(x)*(1 + exp(x) + x^2). - _Stefano Spezia_, Aug 25 2022 %t A020873 Table[2^n+n^2-n+1,{n,0,5!}] (* _Vladimir Joseph Stephan Orlovsky_, May 07 2010 *) %o A020873 (PARI) Vec((2-7*x+10*x^2-7*x^3) / ((2*x-1)*(x-1)^3) + O(x^50)) \\ _Colin Barker_, Aug 01 2015 %K A020873 nonn,easy %O A020873 0,1 %A A020873 _N. J. A. Sloane_