The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A228341 Third diagonal (T(n,2)) of triangle in A228340. 2
1, 2, 9, 47, 291, 2084, 16963, 154751, 1564473, 17363954, 209931921, 2746478927, 38660636899, 582656032412, 9361157155491, 159722327675759, 2884363055319153, 54962620378739666, 1102136770630112473, 23199834803611101599 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
C. Cannings, The Stationary Distributions of a Class of Markov Chains, Applied Mathematics, Vol. 4 No. 5, 2013, pp. 769-773.
FORMULA
a(2) = 1, a(3) = 2; thereafter, a(n) = n*a(n-1) + a(n-2).
a(n) ~ c * n!, where c = BesselI(2,2)-BesselI(3,2) = 0.47620848845888... - Vaclav Kotesovec, Feb 14 2014
MATHEMATICA
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 *)
PROG
(PARI)
v = [1, 2]; for(n=4, 21, v = concat(v, n*v[n-2] + v[n-3])); v \\ Rick L. Shepherd, Jan 22 2014
CROSSREFS
Sequence in context: A356142 A042793 A059272 * A289576 A370200 A369315
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Aug 29 2013
EXTENSIONS
More terms from Rick L. Shepherd, Jan 22 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 16 17:27 EDT 2024. Contains 372554 sequences. (Running on oeis4.)