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 A374721 #24 Oct 17 2024 20:06:35 %S A374721 1,3,7,21,57,171,495,1485,4401,13203,39447,118341,354537,1063611, %T A374721 3189375,9568125,28700001,86100003,258286887,774860661,2324542617, %U A374721 6973627851,20920765455,62762296365,188286534801,564859604403,1694577750327,5083733250981,15251196564297,45753589692891 %N A374721 Number of nonisomorphic spanning trees of the triangular snake nC_3. %C A374721 a(n) is the number of spanning trees of the cyclic snake formed with n copies of the cycle on 3 vertices. A cyclic snake is a connected graph whose block-cutpoint is a path and all its n blocks are isomorphic to the cycle C_m. %D A374721 Christian Barrientos, Graceful labelings of cyclic snakes, Ars Combin., 60 (2001), 85-96. %H A374721 Paolo Xausa, <a href="/A374721/b374721.txt">Table of n, a(n) for n = 1..1000</a> %H A374721 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/TriangularSnakeGraph.html">Triangular Snake Graph</a>. %H A374721 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (3,3,-9). %F A374721 a(n) = 2*3^(n-2) + 3^floor((n-2)/2). %F A374721 From _Stefano Spezia_, Jul 20 2024: (Start) %F A374721 G.f.: x*(1 - 5*x^2)/((1 - 3*x)*(1 - 3*x^2)). %F A374721 E.g.f.: (2*cosh(3*x) + 3*cosh(sqrt(3)*x) + 2*sinh(3*x) + sqrt(3)*sinh(sqrt(3)*x) - 5)/9. (End) %e A374721 For n=2 the a(2)=3 nonisomorphic spanning trees of 2C_3-snake are: %e A374721 __ __ __ __, __\__ __, __\/__ %t A374721 A374721[n_] := 2*3^(n - 2) + 3^Floor[(n - 2)/2]; Array[A374721, 30] (* or *) %t A374721 LinearRecurrence[{3, 3, -9}, {1, 3, 7}, 30] (* _Paolo Xausa_, Oct 17 2024 *) %Y A374721 Cf. A374722. %K A374721 nonn,easy %O A374721 1,2 %A A374721 _Christian Barrientos_, Jul 17 2024