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 A025254 #9 Jan 16 2025 11:15:25 %S A025254 3,1,1,3,10,34,118,417,1497,5448,20063,74649,280252,1060439,4040413, %T A025254 15488981,59701236,231236830,899559100,3513314664,13770811198, %U A025254 54152480421,213585706927,844723104691,3349274471386,13310603555085,53012829376985 %N A025254 a(n) = a(1)*a(n-1) + a(2)*a(n-2) + ... + a(n-3)*a(3) for n >= 4, with initial terms 3, 1, 1, 3. %F A025254 G.f.: (1 + 3*x + x^2 - sqrt(x^4 + 2*x^3 + 7*x^2 - 6*x + 1))/(2*x). - _Vaclav Kotesovec_, Mar 02 2014 %F A025254 Recurrence: (n+1)*a(n) = 3*(2*n-1)*a(n-1) - 7*(n-2)*a(n-2) - (2*n-7)*a(n-3) - (n-5)*a(n-4). - _Vaclav Kotesovec_, Mar 02 2014 %t A025254 CoefficientList[Series[(1+3*x+x^2-Sqrt[x^4+2*x^3+7*x^2-6*x+1])/(2*x),{x,0,20}],x] (* _Vaclav Kotesovec_, Mar 02 2014 *) %Y A025254 Cf. A178578. %K A025254 nonn %O A025254 1,1 %A A025254 _Clark Kimberling_