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 A327612 #8 Oct 03 2019 20:40:10 %S A327612 0,1,2,9,27,112,453,2137,10691,58435,340187,2110016,13829358,95474679, %T A327612 691538954,5240280999,41432965441,341040295916,2916376121375, %U A327612 25862097370783,237434958512487,2253358056604465,22076003464423853,222979436686398848,2319295172150784296 %N A327612 Number of length n reversible string structures that are not palindromic using any number of colors. %H A327612 Andrew Howroyd, <a href="/A327612/b327612.txt">Table of n, a(n) for n = 1..200</a> %F A327612 a(n) = A103293(n + 1) - A188164(n). %o A327612 (PARI) \\ Ach is A304972 as square matrix. %o A327612 Ach(n)={my(M=matrix(n, n, i, k, i>=k)); for(i=3, n, for(k=2, n, M[i, k]=k*M[i-2, k] + M[i-2, k-1] + if(k>2, M[i-2, k-2]))); M} %o A327612 seq(n)={my(A=Ach(n)); vector(n, i, sum(k=1, n, (A[i,k] + stirling(i, k, 2))/2 - stirling((i+1)\2, k, 2)))} %Y A327612 Row sums of A309748(n > 1). %Y A327612 Cf. A103293, A188164, A304972. %K A327612 nonn %O A327612 1,3 %A A327612 _Andrew Howroyd_, Sep 18 2019