A002550
Denominators of coefficients of log(1+x)/sqrt(1+x).
Original entry on oeis.org
1, 1, 24, 12, 640, 1920, 107520, 1792, 2064384, 10321920, 43253760, 64880640, 5398069248, 4198498304, 503819796480, 62977474560, 16610786017280, 4271344975872, 649244436332544, 41618233098240, 27967452642017280
Offset: 1
- 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).
- Vincenzo Librandi, Table of n, a(n) for n = 1..200
- W. G. Bickley and J. C. P. Miller, Numerical differentiation near the limits of a difference table, Phil. Mag., 33 (1942), 1-12 (plus tables).
- W. G. Bickley and J. C. P. Miller, Numerical differentiation near the limits of a difference table, Phil. Mag., 33 (1942), 1-12 (plus tables). [Annotated scanned copy]
-
Denominator[CoefficientList[Series[Log[1 + x]/Sqrt[1 + x]/x, {x, 0, 40}], x]] (* Vincenzo Librandi, Mar 25 2014 *)
A002554
Numerators of coefficients for numerical differentiation.
Original entry on oeis.org
1, -5, 259, -3229, 117469, -7156487, 2430898831, -60997921, 141433003757, -25587296781661, 51270597630767, -6791120985104747, 3400039831130408821, -15317460638921852507, 25789165074168004597399, -1550286106708510672406629, 24823277118070193095631689
Offset: 1
- 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).
- Ruperto Corso, Table of n, a(n) for n = 1..387
- W. G. Bickley and J. C. P. Miller, Numerical differentiation near the limits of a difference table, Phil. Mag., 33 (1942), 1-12 (plus tables).
- W. G. Bickley and J. C. P. Miller, Numerical differentiation near the limits of a difference table, Phil. Mag., 33 (1942), 1-12 (plus tables) [Annotated scanned copy]
- T. R. Van Oppolzer, Lehrbuch zur Bahnbestimmung der Kometen und Planeten, Vol. 2, Engelmann, Leipzig, 1880, p. 23.
-
with(combinat):
a:=n->add(mul(k, k=j), j=choose([seq((2*i-1)^2, i=1..n)], n-1))*(-1)^(n-1)/(2^(2*n-3)*(2*n)!):
seq(numer(a(n)), n=1..20); # Ruperto Corso, Dec 15 2011
A002553
Coefficients for numerical differentiation.
Original entry on oeis.org
1, 24, 640, 7168, 294912, 2883584, 54525952, 167772160, 36507222016, 326417514496, 5772436045824, 50577534877696, 1759218604441600, 15199648742375424, 261208778387488768, 2233785415175766016, 101457092405402533888
Offset: 0
- 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).
- W. G. Bickley and J. C. P. Miller, Numerical differentiation near the limits of a difference table, Phil. Mag., 33 (1942), 1-12 (plus tables).
- W. G. Bickley and J. C. P. Miller, Numerical differentiation near the limits of a difference table, Phil. Mag., 33 (1942), 1-12 (plus tables) [Annotated scanned copy]
- T. R. Van Oppolzer, Lehrbuch zur Bahnbestimmung der Kometen und Planeten, Vol. 2, Engelmann, Leipzig, 1880, p. 23, (see denominators of numbers named M(1,2k+1)).
-
with(combinat): a:=n->add(mul(k, k=j), j=choose([seq((2*i-1)^2, i=1..n)], n))*(-1)^(n-1)/(2^(2*n)*(2*n+1)!):seq(a(n), n=0..20); # Sean A. Irvine, after Ruperto Corso