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-3 of 3 results.

A036283 Write cosec x = 1/x + Sum e_n x^(2n-1)/(2n-1)!; sequence gives denominators of e_n.

Original entry on oeis.org

6, 60, 126, 120, 66, 16380, 6, 4080, 7182, 3300, 138, 32760, 6, 1740, 42966, 8160, 6, 34545420, 6, 270600, 37926, 1380, 282, 1113840, 66, 3180, 21546, 3480, 354, 1703601900, 6, 16320, 194166, 60, 4686, 5043631320, 6, 60, 9954, 9200400, 498, 142981020, 6
Offset: 1

Views

Author

Keywords

Comments

Denominator of [2^(2n-1) - 1] * Bernoulli(2n)/n.
Equals the denominators of the LS1[-2*m,n=1] matrix coefficients of A160487 for m = 1, 2, ... - Johannes W. Meijer, May 24 2009
The products of the first n terms of this sequence appear in the denominators of the a(n) formulas of the right hand columns of triangle A161739. See A000292 (n=1), A107963 (n=2), A161740 (n=3) and A161741 (n=4). The next six values of n show that this pattern persists. - Johannes W. Meijer, Oct 22 2009

Examples

			x^(-1)+1/6*x+7/360*x^3+31/15120*x^5+...
		

References

  • M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 75 (4.3.68).

Crossrefs

Programs

  • Maple
    seq(denom((2^(2*n-1)-1)*bernoulli(2*n)/n),n=1..100); # Robert Israel, Oct 14 2016
  • PARI
    a(n) = denominator((2^(2*n-1)-1)*bernfrac(2*n)/n) \\ Hugo Pfoertner, Dec 18 2022

Formula

Apparently a(n) = 6*A202318(n). - Hugo Pfoertner, Dec 18 2022

Extensions

Title corrected and offset changed by Johannes W. Meijer, May 21 2009
More terms, and edited by Robert Israel, Oct 14 2016

A161739 The RSEG2 triangle.

Original entry on oeis.org

1, 0, 1, 0, 1, 1, 0, 1, 4, 1, 0, 0, 13, 10, 1, 0, -4, 30, 73, 20, 1, 0, 0, -14, 425, 273, 35, 1, 0, 120, -504, 1561, 3008, 798, 56, 1, 0, 0, 736, -2856, 25809, 14572, 1974, 84, 1, 0, -12096, 44640, -73520, 125580, 218769, 55060, 4326, 120, 1
Offset: 0

Views

Author

Johannes W. Meijer & Nico Baken (n.h.g.baken(AT)tudelft.nl), Jun 18 2009

Keywords

Comments

The EG2[2*m,n] matrix coefficients were introduced in A008955. We discovered that EG2[2m,n] = Sum_{k = 1..n} (-1)^(k+n)*t1(n-1,k-1)*2*eta(2*m-2*n+2*k)/((n-1)!)^2 with t1(n,m) the central factorial numbers A008955 and eta(m) = (1-2^(1-m))*zeta(m) with eta(m) the Dirichlet eta function and zeta(m) the Riemann zeta function.
A different way to define these matrix coefficients is EG2[2*m,n] = (1/m)*Sum_{k = 0..m-1} ZETA(2*m-2*k, n-1)*EG2[2*k, n] with ZETA(2*m, n-1) = zeta(2*m) - Sum_{k = 1..n-1} (k)^(-2*m) and EG2[0, n] = 1, for m = 0, 1, 2, ..., and n = 1, 2, 3, ... .
We define the row sums of the EG2 matrix rs(2*m,p) = Sum_{n >= 1} (n^p)*EG2(2*m,n) for p = -2, -1, 0, 1, ... and m >= p+2. We discovered that rs(2*m,p=-2) = 2*eta(2*m+2) = (1 - 2^(1-(2*m+2)))*zeta(2*m+2). This formula is quite unlike the other rs(2*m,p) formulas, see the examples.
The series expansions of the row generators RGEG2(z,2*m) about z = 0 lead to the EG2[2*m,n] coefficients while the series expansions about z = 1 lead to the ZG1[2*m-1,n] coefficients, see the formulas.
The first Maple program gives the triangle coefficients. Adding the second program to the first one gives information about the row sums rs(2*m,p).
The a(n) formulas of the right hand columns are related to sequence A036283, see also A161740 and A161741.

Examples

			The first few expressions for the ZG1[2*m-1,p+1] coefficients are:
  ZG1[2*m-1, 1] = (zeta(2*m-1))/(1/2)
  ZG1[2*m-1, 2] = (zeta(2*m-3) - zeta(2*m-1))/1
  ZG1[2*m-1, 3] = (zeta(2*m-5) - 5*zeta(2*m-3) + 4*zeta(2*m-1))/6
  ZG1[2*m-1, 4] = (zeta(2*m-7) - 14*zeta(2*m-5) + 49*zeta(2*m-3) - 36*zeta(2*m-1))/72
The first few rs(2*m,p) are (m >= p+2)
  rs(2*m, p=0) = ZG1[2*m-1,1]
  rs(2*m, p=1) = ZG1[2*m-1,1] + ZG1[2*m-1,2]
  rs(2*m, p=2) = ZG1[2*m-1,1] + 3*ZG1[2*m-1,2] + 2*ZG1[2*m-1,3]
  rs(2*m, p=3) = ZG1[2*m-1,1] + 7*ZG1[2*m-1,2] + 12*ZG1[2*m-1,3] + 6*ZG1[2*m-1,4]
The first few rs(2*m,p) are (m >= p+2)
  rs(2*m, p=-1) = zeta(2*m+1)/(1/2)
  rs(2*m, p=0) = zeta(2*m-1)/(1/2)
  rs(2*m, p=1) = (zeta(2*m-1) + zeta(2*m-3))/1
  rs(2*m, p=2) = (zeta(2*m-1) + 4*zeta(2*m-3) + zeta(2*m-5))/3
  rs(2*m, p=3) = (0*zeta(2*m-1) + 13*zeta(2*m-3) + 10*zeta(2*m-5) + zeta(2*m-7))/12
The first few rows of the RSEG2 triangle are:
  [1]
  [0, 1]
  [0, 1, 1]
  [0, 1, 4, 1]
  [0, 0, 13, 10, 1]
  [0, -4, 30, 73, 20, 1]
		

Crossrefs

A000007, A129825, A161742 and A161743 are the first four left hand columns.
A000012, A000292, A107963, A161740 and A161741 are the first five right hand columns.
A010790 equals 2*r(n) and A054977 equals denom(r(n)).
A001710 equals numer(q(n)) and A141044 equals denom(q(n)).
A000142 equals the row sums.
A008955 is a central factorial number triangle.
A028246 is Worpitzky's triangle.

Programs

  • Maple
    nmax:=10; for n from 0 to nmax do A008955(n, 0) := 1 end do: for n from 0 to nmax do A008955(n, n) := (n!)^2 end do: for n from 1 to nmax do for m from 1 to n-1 do A008955(n, m) := A008955(n-1, m-1)*n^2 + A008955(n-1, m) end do: end do: for n from 1 to nmax do A028246(n, 1) := 1 od: for n from 1 to nmax do A028246(n, n) := (n-1)! od: for n from 3 to nmax do for m from 2 to n-1 do A028246(n, m) := m*A028246(n-1, m) + (m-1)*A028246(n-1, m-1) od: od: for i from 0 to nmax-2 do s(i) := ((i+1)!/2)*sum(A028246(i+1, k1+1)*(sum((-1)^(j)*A008955(k1, j)*2*x^(2*nmax-(2*k1+1-2*j)), j=0..k1)/ (k1!*(k1+1)!)), k1=0..i) od: a(0,0) := 1: for n from 1 to nmax-1 do for m from 0 to n do a(n,m) := coeff(s(n-1), x, 2*nmax-1-2*m+2) od: od: seq(seq(a(n, m), m=0..n), n=0..nmax-1); for n from 0 to nmax-1 do seq(a(n, m), m=0..n) od;
    m:=7: row := 2*m; rs(2*m, -2) := 2*eta(2*m+2); for p from -1 to m-2 do q(p+1) := (p+1)!/2 od: for p from -1 to m-2 do rs(2*m, p) := sum(a(p+1, k)*zeta(2*m+1-2*k), k=0..p+1)/q(p+1) od;

Formula

RGEG2(2*m,z) = Sum_{n >= 1} EG2[2*m,n]*z^(n-1) = Integral_{y = 0..oo}((2*y)^(2*m)/(2*m)!)* cosh(y)/(cosh(y)^2 - z)^(3/2) for m >= 0.
EG2[2*m,n] = Sum_{k = 1..n} (-1)^(k+n)* A008955(n-1, k-1)*2*eta(2*m-2*n+2*k)/((n-1)!)^2.
ZG1[2*m-1,p+1] = Sum_{j = 0..p} (-1)^j*A008955(p, j)*zeta(2*m-(2*p+1-2*j))/ r(p) with r(p)= p!*(p+1)!/2 and p >= 0.
rs(2*m,p) = Sum_{k = 0..p} A028246(p+1,k+1)*ZG1[2*m-1,k+1] and p >= 0; p <= m-2.
rs(2*m,p) = Sum_{k = 0..p+1} A161739(p+1,k)*zeta(2*m+1-2*k)/q(p+1) with q(p+1) = (p+1)!/2 and p >= -1; p <= m-2.
From Peter Bala, Mar 19 2022: (Start)
It appears that the k-th row polynomial (with indexing starting at k = 1) is given by R(k,n^2) = (k-1)!*Sum_{i = 0..n} (-1)^(n-i)*(i^k)* binomial(n,i)*binomial(n+i,i)/(n+i) for n >= 1.
For example, for k = 6, Maple's SumTools:-Summation procedure gives 5!*Sum_{i = 0..n} (-1)^(n-i)*(i^6)*binomial(n,i)*binomial(n+i,i)/(n+i) = -4*n^2 + 30*n^4 + 73*n^6 + 20*n^8 + n^10 = R(6,n^2). (End)

Extensions

Minor error corrected and edited by Johannes W. Meijer, Sep 22 2012

A161740 Fourth right hand column of the RSEG2 triangle A161739.

Original entry on oeis.org

0, 30, 425, 3008, 14572, 55060, 174130, 481360, 1197196, 2733874, 5817955, 11668800, 22250280, 40616264, 71373956, 121292960, 200092040, 321439910, 504211037, 774042368, 1165242100, 1723107100, 2506711350, 3592233840
Offset: 1

Views

Author

Johannes W. Meijer & Nico Baken (n.h.g.baken(AT)tudelft.nl), Jun 18 2009

Keywords

Crossrefs

Equals fourth right hand column of A161739 (RSEG2 triangle).
Other right hand columns are A000292, A107963, A161741.

Formula

a(n) = (n+4)*(n+3)*(n+2)*(n+1)*(n)*(n-1)*(35*n^3+189*n^2+325*n+204)/45360
The denominator of a(n) (45360) equals the product of the first three terms of A036283 (6*60*126). - Johannes W. Meijer, Oct 22 2009
Showing 1-3 of 3 results.