OFFSET
0,10
REFERENCES
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 429.
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..500
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
FORMULA
b(n) = (2/5)*(n-1)*b(n-1) + b(n-2) where b(n) = K_n(5). - Christian Krause, Dec 09 2023
MAPLE
f := proc(n) round( evalf ( BesselK( n, 5 ) )); end;
MATHEMATICA
Table[BesselK[n, 5] // Round, {n, 0, 25}] (* Jean-François Alcover, Feb 06 2016 *)
PROG
(PARI) a(n)=besselk(n, 5)\/1 \\ Charles R Greathouse IV, Oct 23 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Definition improved by Sean A. Irvine, Mar 28 2010
STATUS
approved