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 A228341 #16 Feb 14 2014 10:36:06 %S A228341 1,2,9,47,291,2084,16963,154751,1564473,17363954,209931921,2746478927, %T A228341 38660636899,582656032412,9361157155491,159722327675759, %U A228341 2884363055319153,54962620378739666,1102136770630112473,23199834803611101599 %N A228341 Third diagonal (T(n,2)) of triangle in A228340. %H A228341 Rick L. Shepherd, <a href="/A228341/b228341.txt">Table of n, a(n) for n = 2..200</a> %H A228341 C. Cannings, <a href="http://dx.doi.org/10.4236/am.2013.45105">The Stationary Distributions of a Class of Markov Chains</a>, Applied Mathematics, Vol. 4 No. 5, 2013, pp. 769-773. %F A228341 a(2) = 1, a(3) = 2; thereafter, a(n) = n*a(n-1) + a(n-2). %F A228341 a(n) ~ c * n!, where c = BesselI(2,2)-BesselI(3,2) = 0.47620848845888... - _Vaclav Kotesovec_, Feb 14 2014 %t A228341 Table[FullSimplify[-2*BesselI[1+n,-2] * (BesselK[2,2] + BesselK[3,2]) + 2*(BesselI[2,2] - BesselI[3,2]) * BesselK[1+n,2]],{n,2,20}] (* _Vaclav Kotesovec_, Feb 14 2014 *) %o A228341 (PARI) %o A228341 v = [1, 2]; for(n=4, 21, v = concat(v, n*v[n-2] + v[n-3])); v \\ _Rick L. Shepherd_, Jan 22 2014 %Y A228341 Cf. A228340, A058307, A058279. %K A228341 nonn,easy %O A228341 2,2 %A A228341 _N. J. A. Sloane_, Aug 29 2013 %E A228341 More terms from _Rick L. Shepherd_, Jan 22 2014