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.

A131136 Denominator of (exponential) expansion of log((x/2-1)/(x-1)).

Original entry on oeis.org

1, 2, 4, 4, 8, 4, 8, 8, 16, 4, 8, 8, 16, 8, 16, 16, 32, 4, 8, 8, 16, 8, 16, 16, 32, 8, 16, 16, 32, 16, 32, 32, 64, 4, 8, 8, 16, 8, 16, 16, 32, 8, 16, 16, 32, 16, 32, 32, 64, 8, 16, 16, 32, 16, 32, 32, 64, 16, 32, 32, 64, 32, 64, 64, 128, 4, 8, 8, 16, 8, 16, 16, 32, 8, 16, 16
Offset: 0

Views

Author

Paul Barry, Jun 17 2007

Keywords

Comments

a(n+1) = 2^A063787(n). a(n+1) = A001316(n)/2. - Stephen Crowley, Aug 25 2008
Also, 1 followed by A117973. - Omar E. Pol, Dec 11 2010

Examples

			From _Omar E. Pol_, Jun 14 2009, Dec 11 2010: (Start)
May be written as a triangle by using the Crowley formula with A063787:
.1;
.2;
.4,4;
.8,4,8,8;
.16,4,8,8,16,8,16,16;
.32,4,8,8,16,8,16,16,32,8,16,16,32,16,32,32;
.64,4,8,8,16,8,16,16,32,8,16,16,32,16,32,32,64,8,16,16,32,16,32,32,64,16,...
Also
1,
2,
4,
4,8,
4,8,8,16,
4,8,8,16,8,16,16,32,
4,8,8,16,8,16,16,32,8,16,16,32,16,32,32,64,
4,8,8,16,8,16,16,32,8,16,16,32,16,32,32,64,8,16,16,32,16,32,32,64,16,32,...
(End)
		

Crossrefs

Cf. A063787.
Cf. A000079, A117973. - Omar E. Pol, Jun 14 2009, Dec 11 2010

Programs

  • Maple
    a(n)=abs(op(1, numer(expand(Zeta(2n)/Zeta(1-2n))))) # Stephen Crowley, Aug 25 2008
  • Mathematica
    With[{nn=80},Denominator[CoefficientList[Series[Log[(x/2-1)/(x-1)],{x,0,nn}],x] Range[0,nn]!]] (* Harvey P. Dale, Apr 28 2016 *)

Formula

a(n) = 0^n + n + Sum_{k=0..n-1} (-1)^(1 + binomial(n-1,k)). - Stephen Crowley, Aug 25 2008