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

A126388 Denominators in a series for the "alternating Euler constant" log(4/Pi).

Original entry on oeis.org

2, 3, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 22, 23, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 72, 73, 78, 79, 80, 81, 86, 87, 90, 91, 92
Offset: 2

Views

Author

Jonathan Sondow, Jan 01 2007

Keywords

Comments

All n > 1 such that (# of 1's) != (# of 0's) in the base 2 expansion of floor(n/2). The numerators of the series are A126389.

Examples

			floor(13/2) = 6 = 110 base 2, which has (# of 1's) = 2 != 1 = (#
of 0's), so 13 is a member.
		

Crossrefs

Complementary to A066879.

Programs

  • Mathematica
    b[n_] := DigitCount[n,2,1] - DigitCount[n,2,0]; L = {}; Do[If[b[Floor[n/2]] != 0, L = Append[L,n]], {n,2,100}]; L

Formula

log(4/Pi) = 1/2 - 1/3 + 2/6 - 2/7 - 1/8 + 1/9 + 1/10 - 1/11 + 1/12 - 1/13 + 3/14 - 3/15 - 2/16 + 2/17 + 2/22 - ...
Showing 1-1 of 1 results.