cp's OEIS Frontend

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.

A099597 Array T(n,k) read by antidiagonals: expansion of exp(x+y)/(1-xy).

This page as a plain text file.
%I A099597 #26 Jul 23 2025 16:43:23
%S A099597 1,1,1,1,2,1,1,3,3,1,1,4,9,4,1,1,5,19,19,5,1,1,6,33,82,33,6,1,1,7,51,
%T A099597 229,229,51,7,1,1,8,73,496,1313,496,73,8,1,1,9,99,919,4581,4581,919,
%U A099597 99,9,1,1,10,129,1534,11905,32826,11905,1534,129,10,1,1,11,163,2377,25733,137431,137431,25733,2377,163,11,1
%N A099597 Array T(n,k) read by antidiagonals: expansion of exp(x+y)/(1-xy).
%C A099597 Rows are polynomials in n whose coefficients are in A099599.
%C A099597 From _Peter Bala_, Aug 19 2013: (Start)
%C A099597 The k-th superdiagonal sequence of this square array occurs as the sequence of numerators in the convergents to a certain continued fraction representation of the constant BesselI(k,2), where BesselI(k,x) is a modified Bessel function of the first kind:
%C A099597 Let d_k(n) = T(n,n+k) = n! * (n+k)! * Sum_{i=0..n} 1/(i!*(i+k)!) denote the sequence of entries on the k-th superdiagonal. It satisfies the first-order recurrence equation d_k(n) = n*(n+k)*d_k(n-1) + 1 with d_k(0) = 1 and also the second-order recurrence d_k(n) = (n*(n+k)+1)*d_k(n-1) - (n-1)*(n-1+k)*d_k(n-2) with initial conditions d_k(0) = 1 and d_k(1) = k+2. This latter recurrence is also satisfied by the sequence n!*(n+k)!. From this observation we obtain the finite continued fraction expansion d_k(n) = n!*(n+k)!*(1/(k! - k!/((k+2) - (k+1)/((2*k+5) - 2*(k+2)/((3*k+10) - ... - n*(n+k)/(((n+1)*(n+k+1)+1) ))))).
%C A099597 Taking the limit as n -> infinity produces a continued fraction representation for the modified Bessel function value BesselI(k,2) = Sum_{i=0..inf} 1/(i!*(i+k)!) = 1/(k! - k!/((k+2) -(k+1)/((2*k+5) - 2*(k+2)/((3*k+10) - ... - n*(n+k)/(((n+1)*(n+k+1)+1) - ...))))). See A070910 for the case k = 0 and A096789 for the case k = 1. (End)
%H A099597 E. W. Weisstein, <a href="https://mathworld.wolfram.com/ModifiedBesselFunctionoftheFirstKind.html">Modified Bessel Function of the First Kind</a>
%F A099597 T(n,k) = Sum_{i=0..min(n,k)} C(n,i)*C(k,i)*i!^2. The LDU factorization of this square array is P * D * transpose(P), where P is Pascal's triangle A007318 and D = diag(0!^2, 1!^2, 2!^2, ... ). Compare with A088699. - _Peter Bala_, Nov 06 2007
%F A099597 Recurrence equation: T(n,k) = n*k*T(n-1,k-1) + 1 with boundary conditions T(n,0) = T(0,n ) = 1.
%F A099597 Main subdiagonal and main superdiagonal [1, 3, 19, 229, ...] is A228229. - _Peter Bala_, Aug 19 2013
%F A099597 nth row/column o.g.f.: HypergeometricPFQ[{1,1,-n},{},x/(x-1)]/(1-x) (see comment in A099599). - _Natalia L. Skirrow_, Jul 18 2025
%e A099597 1, 1,  1,   1,    1,     1,
%e A099597 1, 2,  3,   4,    5,     6,
%e A099597 1, 3,  9,  19,   33,    51,
%e A099597 1, 4, 19,  82,  229,   496,
%e A099597 1, 5, 33, 229, 1313,  4581,
%e A099597 1, 6, 51, 496, 4581, 32826,
%p A099597 #A099597
%p A099597 T := proc(n,k) option remember;
%p A099597 if n = 0 then 1 elif k = 0 then 1
%p A099597 else n*k*thisproc(n-1,k-1) + 1
%p A099597 fi
%p A099597 end:
%p A099597 # Diplay entries by antidiagonals
%p A099597 seq(seq(T(n-k,k), k = 0..n), n = 0..10);
%p A099597 # _Peter Bala_, Aug 19 2013
%t A099597 T[_, 0] = T[0, _] = 1;
%t A099597 T[n_, k_] := T[n, k] = n k T[n - 1, k - 1] + 1;
%t A099597 Table[T[n - k, k], {n, 0, 11}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, Nov 02 2019 *)
%Y A099597 Rows include A000012, A000027, A058331. Main diagonal is A006040. Antidiagonal sums are in A099598. Cf. A099599.
%Y A099597 Cf. A088699. A228229 (main super and subdiagonal).
%K A099597 nonn,easy,tabl
%O A099597 0,5
%A A099597 _Ralf Stephan_, Oct 28 2004