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.

Showing 1-2 of 2 results.

A065919 Bessel polynomial y_n(4).

Original entry on oeis.org

1, 5, 61, 1225, 34361, 1238221, 54516085, 2836074641, 170218994545, 11577727703701, 880077524475821, 73938089783672665, 6803184337622361001, 680392371852019772765, 73489179344355757819621, 8525425196317119926848801, 1057226213522667226687070945
Offset: 0

Views

Author

N. J. A. Sloane, Dec 08 2001

Keywords

Comments

Main diagonal of A143411. - Peter Bala, Aug 14 2008

References

  • J. Riordan, Combinatorial Identities, Wiley, 1968, p. 77.

Crossrefs

Cf. A143411 (main diagonal), A143412.
Polynomial coefficients are in A001498.

Programs

  • Magma
    A065919:= func< n | (&+[Binomial(n,k)*Factorial(n+k)*2^k/Factorial(n): k in [0..n]]) >;
    [A065919(n): n in [0..30]]; // G. C. Greubel, Oct 05 2023
    
  • Maple
    seq(simplify(2^n*KummerU(-n,-2*n,1/2)), n=0..16); # Peter Luschny, May 10 2022
  • Mathematica
    Table[Sum[(n+k)!*2^k/((n-k)!*k!), {k,0,n}], {n,0,20}] (* Vaclav Kotesovec, Jul 22 2015 *)
  • PARI
    for (n=0, 100, if (n>1, a=4*(2*n - 1)*a1 + a2; a2=a1; a1=a, if (n, a=a1=5, a=a2=1)); write("b065919.txt", n, " ", a) ) \\ Harry J. Smith, Nov 04 2009
    
  • PARI
    a(n) = sum(k=0,n, (n+k)!*2^k/((n-k)!*k!) ); \\ Joerg Arndt, May 17 2013
    
  • SageMath
    def A065919(n): return sum(binomial(n,k)*factorial(n+k)*2^k/factorial(n) for k in range(n+1))
    [A065919(n) for n in range(31)] # G. C. Greubel, Oct 05 2023

Formula

y_n(x) = Sum_{k=0..n} (n+k)!*(x/2)^k/((n-k)!*k!).
From Peter Bala, Aug 14 2008: (Start)
Recurrence relation: a(0) = 1, a(1) = 5, a(n) = 4*(2*n-1)*a(n-1) + a(n-2) for n >= 2. Sequence A143412(n) satisfies the same recurrence relation.
1/sqrt(e) = 1 - 2*Sum_{n = 0..inf} (-1)^n/(a(n)*a(n+1)) = 1 - 2*( 1/(1*5) - 1/(5*61) + 1/(61*1225) - ... ). (End)
G.f.: 1/Q(0), where Q(k)= 1 - x - 4*x*(k+1)/Q(k+1); (continued fraction). - Sergei N. Gladkovskii, May 17 2013
a(n) = exp(1/4)/sqrt(2*Pi)*BesselK(n+1/2,1/4). - Gerry Martens, Jul 22 2015
a(n) ~ 2^(3*n+1/2) * n^n / exp(n-1/4). - Vaclav Kotesovec, Jul 22 2015
From Peter Bala, Apr 12 2017: (Start)
a(n) = 1/n!*Integral_{x = 0..inf} x^n*(1 + 2*x)^n dx.
E.g.f.: d/dx( exp(x*c(2*x)) ) = 1 + 5*x + 61*x^2/2! + 1225*x^3/3! + ..., where c(x) = (1 - sqrt(1 - 4*x))/(2*x) is the g.f. of the Catalan numbers A000108. (End)
G.f.: (1/(1-x))*hypergeometric2f0(1,1/2; - ; 8*x/(1-x)^2). - G. C. Greubel, Aug 16 2017
a(n) = 2^n*KummerU(-n, -2*n, 1/2). - Peter Luschny, May 10 2022

A143410 Form the difference table of the sequence {2^k*k!}, then divide k-th column entries by 2^k*k!. Array read by ascending antidiagonals, T(n, k) for n, k >= 0.

Original entry on oeis.org

1, 1, 1, 5, 3, 1, 29, 17, 5, 1, 233, 131, 37, 7, 1, 2329, 1281, 353, 65, 9, 1, 27949, 15139, 4105, 743, 101, 11, 1, 391285, 209617, 56189, 10049, 1349, 145, 13, 1, 6260561, 3325923, 883885, 156679, 20841, 2219, 197, 15, 1, 112690097, 59475329, 15700313
Offset: 0

Views

Author

Peter Bala, Aug 19 2008

Keywords

Comments

This table is closely connected to the constant sqrt(e). The row, column and diagonal entries of this table occur in series acceleration formulas for sqrt(e). For a similar table based on the Euler-Seidel matrix of the sequence {2^k*k!} and related to the constant 1/sqrt(e), see A143411. For other arrays similarly related to constants see A086764 (for e), A143409 (for 1/e), A008288 (for log(2)), A108625 (for zeta(2)) and A143007 (for zeta(3)).

Examples

			Table of differences of {2^k*k!}
  =====================================================
  Column                0     1     2     3     4     5
  =====================================================
  Sequence 2^k*k!       1     2     8    48   384  3840
  First differences     1     6    40   336  3456
  Second differences    5    34   296  3120
  Third differences    29   262  2824
  Fourth differences  233  2562
  ...
Remove the common factor 2^k*k! from k-th column entries:
  ====================================
  n\k|   0      1      2      3      4
  ====================================
  0  |   1      1      1      1      1
  1  |   1      3      5      7      9
  2  |   5     17     37     65    101
  3  |  29    131    353    743   1349
  4  | 233   1281   4105  10049  20841
		

Crossrefs

Programs

  • Maple
    T := (n, k) -> (-1)^n/k!*add((-2)^j*binomial(n,j)*(k+j)!, j = 0..n):
    for n from 0 to 9 do seq(T(n, k), k = 0..9) end do;

Formula

T(n,k) = ((-1)^n/k!)*Sum {j = 0..n} (-2)^j*C(n,j)*(k+j)!.
Relation with Poisson-Charlier polynomials c_n(x,a): T(n,k) = c_n(-(k+1),-1/2).
Recurrence relations: T(n,k) = 2*n*T(n-1,k) + T(n,k-1); T(n,k) = 2*(n+k)*T(n-1,k) - T(n-1,k-1); T(n,k) = 2*(k+1)*T(n-1,k+1) - T(n-1,k);
Recurrence for row n entries: 2*k*T(n,k) = (2*n+2*k+1)*T(n,k-1) - T(n,k-2).
E.g.f. for column k: exp(-y)/(1-2*y)^(k+1).
E.g.f. for array: exp(-y)/(1-x-2*y) = (1 + x + x^2 + ...) + (1 + 3*x + 5*x^2 + ...)*y + (5 + 17*x + 37*x^2 + ...)*y^2/2! + ... .
Series acceleration formulas for sqrt(e):
Row n: sqrt(e) = 2^n*n!*(1/T(n,0) + (-1)^n*(1/(2*1!*T(n,0)*T(n,1)) + 1/(2^2*2!*T(n,1)*T(n,2)) + 1/(2^3*3!*T(n,2)*T(n,3)) + ...)). For example, row 3 gives sqrt(e) = 48*(1/29 - 1/(2*29*131) - 1/(8*131*353) - 1/(48*353*743) - ...).
Column k: sqrt(e) = (1 + (1/2)/1! + (1/2)^2 / 2! + ... + (1/2)^k/k!) + 1/(2^k*k!) * Sum_{n>= 0} ((-2)^n *n!/(T(n,k)*T(n+1,k))). For example, column 3 gives sqrt(e) = 79/48 + (1/48)*(1/(1*7) - 2/(7*65) + 8/(65*743) - 48/(743*10049) + ...).
Main diagonal: sqrt(e) = 1 + 2*(1/(1*3) - 1/(3*37) + 1/(37*743) - ...). See A143412.
T(n, k) = (-1)^n*(-1/2)^(k + 1)*KummerU(k + 1, k + n + 2, -1/2). - Peter Luschny, Jan 02 2020
Showing 1-2 of 2 results.