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.

A002657 Numerators of Cauchy numbers of second type (= Bernoulli numbers B_n^{(n)}).

Original entry on oeis.org

1, 1, 5, 9, 251, 475, 19087, 36799, 1070017, 2082753, 134211265, 262747265, 703604254357, 1382741929621, 8164168737599, 5362709743125, 8092989203533249, 15980174332775873, 12600467236042756559
Offset: 0

Views

Author

Keywords

Comments

These coefficients (with alternating signs) are also known as the Nørlund [or Norlund, Noerlund or Nörlund] numbers. [After the Danish mathematician Niels Erik Nørlund (1885-1981). - Amiram Eldar, Jun 17 2021]
The denominators are found in A002790. The alternating rational sequence ((-1)^n)*a(n)/A002790(n)is the z-sequence for the Stirling2 triangle A008277(n+1,k+1), n>=k>=0. This is the Sheffer (exp(x),exp(x)-1) triangle. See the W. Lang link under A006232 for Sheffer a- and z-sequences with references, and the conversion to S. Roman's notation. The a-sequence is A006232(n)/A006233(n). - Wolfdieter Lang, Oct 06 2011 [This is the Sheffer triangle A007318*A048993. Added Jun 20 2017]
A simple series with the signless Cauchy numbers of second type C2(n) leads to Euler's constant: gamma = 1 - Sum_{n >=1} C2(n)/(n*(n+1)!) = 1 - 1/4 - 5/72 - 1/32 - 251/14400 - 19/1728 - 19087/2540160 - ..., see references [Blagouchine] below, as well as A075266 and A262235. - Iaroslav V. Blagouchine, Sep 15 2015

Examples

			1, 1/2, 5/6, 9/4, 251/30, 475/12, 19087/84, 36799/24, 1070017/90, ...
		

References

  • Louis Comtet, Advanced Combinatorics, Reidel, 1974, p. 294.
  • P. Curtz, Intégration numérique des systèmes différentiels à conditions initiales, Centre de Calcul Scientifique de l'Armement, Arcueil, 1969.
  • Louis Melville Milne-Thompson, Calculus of Finite Differences, 1951, p. 136.
  • N. E. Nørlund, Vorlesungen über Differenzenrechnung, Springer-Verlag, Berlin, 1924.
  • 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).

Crossrefs

Programs

  • Magma
    m:=25; R:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(-x/((1-x)*Log(1-x)) )); [Numerator(Factorial(n-1)*b[n]): n in [1..m-1]]; // G. C. Greubel, Oct 29 2018
  • Maple
    seq(numer(add((-1)^(n-k)*Stirling1(n,k)/(k+1),k=0..n)),n=0..10); # Peter Luschny, Apr 28 2009
  • Mathematica
    Table[Abs[Numerator[NorlundB[n,n]]],{n,0,30}](* Vladimir Joseph Stephan Orlovsky, Dec 30 2010 *)
    a[ n_] := If[ n < 0, 0, (-1)^n Numerator @ NorlundB[ n, n]]; (* Michael Somos, Jul 12 2014 *)
    a[ n_] := If[ n < 0, 0, Numerator@Integrate[ Pochhammer[ x, n], {x, 0, 1}]]; (* Michael Somos, Jul 12 2014 *)
    a[ n_] := If[ n < 0, 0, Numerator[ n! SeriesCoefficient[ -x / ((1 - x) Log[ 1 - x]), {x, 0, n}]]]; (* Michael Somos, Jul 12 2014 *)
    a[ n_] := If[ n < 0, 0, (-1)^n Numerator[ n! SeriesCoefficient[ (x / (Exp[x] - 1))^n, {x, 0, n}]]]; (* Michael Somos, Jul 12 2014 *)
  • Maxima
    v(n):=if n=0 then 1 else 1-sum(v(i)/(n-i+1),i,0,n-1);
    makelist(num(n!*v(n)),n,0,10); /* Vladimir Kruchinin, Aug 28 2013 */
    

Formula

Numerator of integral of x(x+1)...(x+n-1) from 0 to 1.
E.g.f.: -x/((1-x)*log(1-x)). (Note: the numerator of the coefficient of x^n/n! is a(n). - Michael Somos, Jul 12 2014). E.g.f. rewritten by Iaroslav V. Blagouchine, May 07 2016
Numerator of Sum_{k=0..n} (-1)^(n-k) A008275(n,k)/(k+1). - Peter Luschny, Apr 28 2009
a(n) = numerator(n!*v(n)), where v(n) = 1 - Sum_{i=0..n-1} v(i)/(n-i+1), v(0)=1. - Vladimir Kruchinin, Aug 28 2013