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 A370705 #10 Jun 23 2024 16:11:04 %S A370705 1,0,1,0,0,1,0,-1,0,1,0,0,-1,0,1,0,9,0,-5,0,1,0,0,4,0,-5,0,1,0,-225,0, %T A370705 259,0,-35,0,1,0,0,-36,0,49,0,-14,0,1,0,11025,0,-3229,0,987,0,-21,0,1, %U A370705 0,0,576,0,-820,0,273,0,-30,0,1 %N A370705 Triangle read by rows: T(n, k) = numerator(CF(n, k)) where CF(n, k) = n! * [x^k] [t^n] (t/2 + sqrt(1 + (t/2)^2))^(2*x). %C A370705 The rational triangle R(n, k) contains the central factorial numbers. The central factorial of the first kind is the even subtriangle of R, while the central factorial of the second kind is the odd subtriangle. Since the terms of the even subtriangle can be seen as integers, the rational nature of these numbers is generally disregarded. The denominators of the central factorial of second kind are powers of 4; therefore, they are often studied as integers in the form 4^(n-k)*R(n, k). We will refer to the subtriangles by CF1(n, k) and CF2(n, k). %C A370705 We recall that if T(n, k) is a number triangle (0 <= k <= n) then %C A370705 Teven(n, k) = [T(n, k), k=0..n step 2), n=0..len step 2] %C A370705 is the even subtriangle of T, and the odd subtriangle of T is %C A370705 Todd(n, k) = [T(n, k), k=1..n step 2), n=1..len step 2], where %C A370705 'k=a..o step s' denotes the subrange [a, a+s, a+2*s, ..., a+s*floor((o-a)/s)]. %C A370705 The central factorial numbers have their origins in approximation theory and numerical mathematics. They were undoubtedly used for a long time when J. F. Steffensen used them to construct quadrature formulas and presented them in 1924 at the 7th ICM. Four decades later, Carlitz and Riordan adopted the idea for use in combinatorics. While Steffensen originally referred to the numbers as "central differences of nothing," the second part of the name was later omitted. %D A370705 Johan Frederik Steffensen, On a class of quadrature formulae. Proceedings of the International Mathematical Congress Toronto 1924, Vol 2, pp. 837-844. %H A370705 P. L. Butzer, M. Schmidt, E. L. Stark and L. Vogt. <a href="http://dx.doi.org/10.1080/01630568908816313">Central factorial numbers; their main properties and some applications</a>, Num. Funct. Anal. Optim., 10 (1989) 419-488. %H A370705 Leonard Carlitz and John Riordan, <a href="https://doi.org/10.4153/CJM-1963-010-8">The Divided Central Differences of Zero</a>, Canadian Journal of Mathematics, Volume 15, 1963, pp. 94-100. %H A370705 P. A. MacMahon, <a href="https://doi.org/10.1112/plms/s2-19.1.75">Divisors of numbers and their continuations in the theory of partitions</a>, Proc. London Math. Soc., (2) 19 (1919), 75-113; Coll. Papers II, pp. 303-341. %H A370705 Johan Frederik Steffensen, <a href="https://doi.org/10.1017/S0020268100032893">On the Definition of the Central Factorial</a>, Journal of the Institute of Actuaries, Volume 64, Issue 2, July 1933, pp. 165-168. %e A370705 Triangle starts: %e A370705 [0] 1; %e A370705 [1] 0, 1; %e A370705 [2] 0, 0, 1; %e A370705 [3] 0, -1, 0, 1; %e A370705 [4] 0, 0, -1, 0, 1; %e A370705 [5] 0, 9, 0, -5, 0, 1; %e A370705 [6] 0, 0, 4, 0, -5, 0, 1; %e A370705 [7] 0, -225, 0, 259, 0, -35, 0, 1; %e A370705 [8] 0, 0, -36, 0, 49, 0, -14, 0, 1; %e A370705 [9] 0, 11025, 0, -3229, 0, 987, 0, -21, 0, 1; %p A370705 gf := (t/2 + sqrt(1 + (t/2)^2))^(2*x): ser := series(gf, t, 20): %p A370705 ct := n -> n!*coeff(ser, t, n): %p A370705 T := (n, k) -> numer(coeff(ct(n), x, k)): %p A370705 seq(seq(T(n, k), k = 0..n), n = 0..10); %p A370705 # Filtering the central factorials of the first resp. second kind: %p A370705 CF1 := (T,len) -> local n,k; seq(print(seq(T(n,k), k=0..n, 2)), n = 0..len, 2); %p A370705 CF2 := (T,len) -> local n,k; seq(print(seq(T(n,k), k=1..n, 2)), n = 1..len, 2); %Y A370705 See the discussion by Sloane in A008955 of Riordan's notation. In particular, the notation 'T' below does not refer to the present triangle. %Y A370705 Central factorials (rational, general case): (this triangle) / A370703; %Y A370705 t(2n, 2k) (first kind, 'even case') A204579; (signed, T(n, 0) missing) %Y A370705 |t(2n, 2k)| A269944; (unsigned, T(n, 0) = 0^n) %Y A370705 |t(2n, 2n-2k)| A008955; %Y A370705 |t(2n+1, 2n+1-2k)|*4^k A008956; %Y A370705 T(2n, 2k) (second kind, 'odd case') A269945, A036969; %Y A370705 T(2n+1, 2k+1)*4^(n-k) A160562. %K A370705 sign,tabl,frac %O A370705 0,17 %A A370705 _Peter Luschny_, Mar 02 2024