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 A056324 #60 Mar 03 2024 11:19:07 %S A056324 1,1,2,4,11,32,116,455,1993,9134,43580,211659,1041441,5156642, %T A056324 25640456,127773475,637624313,3184387574,15910947980,79521737939, %U A056324 397510726681,1987259550002,9935420646296,49674470817195,248364482308833,1241798790172214 %N A056324 Number of reversible string structures with n beads using a maximum of five different colors. %C A056324 A string and its reverse are considered to be equivalent. Permuting the colors will not change the structure. Thus aabc, cbaa and bbac are all considered to be identical. %C A056324 Number of set partitions of an unoriented row of n elements with five or fewer nonempty subsets. - _Robert A. Russell_, Oct 28 2018 %C A056324 There are nonrecursive formulas, generating functions, and computer programs for A056272 and A305751, which can be used in conjunction with the formula. - _Robert A. Russell_, Oct 28 2018 %C A056324 From _Allan Bickle_, Jun 02 2022: (Start) %C A056324 a(n) is the number of (unlabeled) 5-paths with n+7 vertices. (A 5-path with order n at least 7 can be constructed from a 5-clique by iteratively adding a new 5-leaf (vertex of degree 5) adjacent to an existing 5-clique containing an existing 5-leaf.) %C A056324 Recurrences appear in the papers by Bickle, Eckhoff, and Markenzon et al. (End) %D A056324 M. R. Nester (1999). Mathematical investigations of some plant interaction designs. PhD Thesis. University of Queensland, Brisbane, Australia. [See A056391 for pdf file of Chap. 2] %H A056324 Muniru A Asiru, <a href="/A056324/b056324.txt">Table of n, a(n) for n = 0..1000</a> %H A056324 Allan Bickle, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL25/Bickle/bickle5.html">How to Count k-Paths</a>, J. Integer Sequences, 25 (2022) Article 22.5.6. %H A056324 Allan Bickle, <a href="https://doi.org/10.20429/tag.2024.000105">A Survey of Maximal k-degenerate Graphs and k-Trees</a>, Theory and Applications of Graphs 0 1 (2024) Article 5. %H A056324 J. Eckhoff, <a href="https://doi.org/10.1002/jgt.3190170112">Extremal interval graphs</a>, J. Graph Theory 17 1 (1993), 117-127. %H A056324 L. Markenzon, O. Vernet, and P. R. da Costa Pereira, <a href="https://doi.org/10.1016/j.dam.2008.05.015">A clique-difference encoding scheme for labelled k-path graphs</a>, Discrete Appl. Math. 156 (2008), 3216-3222. %H A056324 <a href="/index/Rec#order_08">Index entries for linear recurrences with constant coefficients</a>, signature (11, -34, -16, 247, -317, -200, 610, -300). %F A056324 Use de Bruijn's generalization of Polya's enumeration theorem as discussed in reference. %F A056324 G.f.: (1-10x+25x^2+32x^3-196x^4+149x^5+225x^6-321x^7+85x^8)/((1-x)*(1-2x)*(1-3x)*(1-5x)*(1-2x^2)*(1-5x^2)). - _Colin Barker_, Nov 24 2012 [Adapted to offset 0 by _Robert A. Russell_, Nov 07 2018] %F A056324 From _Robert A. Russell_, Oct 28 2018: (Start) %F A056324 a(n) = (A056272(n) + A305751(n)) / 2. %F A056324 a(n) = A056272(n) - A320935(n) = A320935(n) + A305751(n). %F A056324 a(n) = Sum_{j=0..k} (S2(n,j) + Ach(n,j)) / 2, where k=5 is the maximum number of colors, S2 is the Stirling subset number A008277, and Ach(n,k) = [n>=0 & n<2 & n==k] + [n>1]*(k*Ach(n-2,k) + Ach(n-2,k-1) + Ach(n-2,k-2)). %F A056324 a(n) = A000007(n) + A057427(n) + A056326(n) + A056327(n) + A056328(n) + A056329(n). (End) %F A056324 For n>8, a(n) = 11*a(n-1) - 34*a(n-2) - 16*a(n-3) + 247*a(n-4) - 317*a(n-5) - 200*a(n-6) + 610*a(n-7) - 300*a(n-8). - _Muniru A Asiru_, Oct 30 2018 %F A056324 From _Allan Bickle_, Jun 04 2022: (Start) %F A056324 a(n) = 5^n/240 + 3^n/24 + 2^n/12 + 13*5^(n/2)/120 + 2^(n/2)/6 + 5/16 for n>0 even; %F A056324 a(n) = 5^n/240 + 3^n/24 + 2^n/12 + 5^((n+1)/2)/24 + 2^((n+1)/2)/12 + 5/16 for n>0 odd. (End) %e A056324 For a(4)=11, the 7 achiral patterns are AAAA, AABB, ABAB, ABBA, ABCA, ABBC, and ABCD. The 4 chiral pairs are AAAB-ABBB, AABA-ABAA, AABC-ABCC, and ABAC-ABCB. %t A056324 Ach[n_, k_] := Ach[n, k] = If[n<2, Boole[n==k && n>=0], k Ach[n-2,k] + Ach[n-2,k-1] + Ach[n-2,k-2]] (* A304972 *) %t A056324 k=5; Table[Sum[StirlingS2[n,j]+Ach[n,j],{j,0,k}]/2,{n,0,40}] (* _Robert A. Russell_, Oct 28 2018 *) %t A056324 LinearRecurrence[{11, -34, -16, 247, -317, -200, 610, -300}, {1, 1, 2, 4, 11, 32, 116, 455, 1993}, 40] (* _Robert A. Russell_, Oct 28 2018 *) %Y A056324 Cf. A032122. %Y A056324 Column 5 of A320750. %Y A056324 Cf. A056272 (oriented), A320935 (chiral), A305751 (achiral). %Y A056324 The numbers of unlabeled k-paths for k = 2..7 are given in A005418, A001998, A056323, A056324, A056325, and A345207, respectively. %Y A056324 The sequences above converge to A103293(n+1). %K A056324 nonn,easy %O A056324 0,3 %A A056324 _Marks R. Nester_ %E A056324 Terms added by _Robert A. Russell_, Oct 30 2018 %E A056324 a(0)=1 prepended by _Robert A. Russell_, Nov 07 2018